Commit 8977d45b authored by Mark Florisson's avatar Mark Florisson

os.path.join() debug files correctly

parent f960367e
...@@ -23,7 +23,8 @@ def usage(): ...@@ -23,7 +23,8 @@ def usage():
def make_command_file(path_to_debug_info, prefix_code='', no_import=False): def make_command_file(path_to_debug_info, prefix_code='', no_import=False):
if not no_import: if not no_import:
pattern = os.path.join(path_to_debug_info, pattern = os.path.join(path_to_debug_info,
'cython_debug/cython_debug_info_*') 'cython_debug',
'cython_debug_info_*')
debug_files = glob.glob(pattern) debug_files = glob.glob(pattern)
if not debug_files: if not debug_files:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment