diff options
Diffstat (limited to 'numpy/_import_tools.py')
-rw-r--r-- | numpy/_import_tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_import_tools.py b/numpy/_import_tools.py index 9ff9427d0..ba9e021c7 100644 --- a/numpy/_import_tools.py +++ b/numpy/_import_tools.py @@ -337,7 +337,7 @@ class PackageLoaderDebug(PackageLoader): def _execcmd(self,cmdstr): """ Execute command in parent_frame.""" frame = self.parent_frame - print('Executing',`cmdstr`,'...', end=' ') + print('Executing',repr(cmdstr),'...', end=' ') sys.stdout.flush() exec (cmdstr, frame.f_globals,frame.f_locals) print('ok') |