From 8977d45bae7a1e1b2d3908c7783f7f78c4f7d46d Mon Sep 17 00:00:00 2001 From: Mark Florisson Date: Wed, 10 Nov 2010 20:53:12 +0100 Subject: [PATCH] os.path.join() debug files correctly --- Cython/Debugger/Cygdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cython/Debugger/Cygdb.py b/Cython/Debugger/Cygdb.py index 9baa82c4..6288fe64 100644 --- a/Cython/Debugger/Cygdb.py +++ b/Cython/Debugger/Cygdb.py @@ -23,7 +23,8 @@ def usage(): def make_command_file(path_to_debug_info, prefix_code='', no_import=False): if not no_import: pattern = os.path.join(path_to_debug_info, - 'cython_debug/cython_debug_info_*') + 'cython_debug', + 'cython_debug_info_*') debug_files = glob.glob(pattern) if not debug_files: -- 2.26.2