diff options
author | njsmith <njs@pobox.com> | 2013-04-08 12:04:07 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-04-08 12:04:07 -0700 |
commit | f85bdf48aadf7b5a5f575370b589805fed190a6c (patch) | |
tree | c84a165c4b3d10421744785ffe2803bc069b09ea /numpy/_import_tools.py | |
parent | 01aa27a436476d87c4d986a80225d23179eebb44 (diff) | |
parent | 011f8a20044a3982b2441cb53876e9689a3f6d0c (diff) | |
download | numpy-f85bdf48aadf7b5a5f575370b589805fed190a6c.tar.gz |
Merge pull request #3208 from charris/2to3-apply-repr-fixer
2to3: Apply `repr` fixer.
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') |