summaryrefslogtreecommitdiff
path: root/numpy/_import_tools.py
diff options
context:
space:
mode:
authornjsmith <njs@pobox.com>2013-04-08 12:04:07 -0700
committernjsmith <njs@pobox.com>2013-04-08 12:04:07 -0700
commitf85bdf48aadf7b5a5f575370b589805fed190a6c (patch)
treec84a165c4b3d10421744785ffe2803bc069b09ea /numpy/_import_tools.py
parent01aa27a436476d87c4d986a80225d23179eebb44 (diff)
parent011f8a20044a3982b2441cb53876e9689a3f6d0c (diff)
downloadnumpy-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.py2
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')