diff --git a/Lib/importall.py b/Lib/importall.py index 1383e807906..780862cf33a 100755 --- a/Lib/importall.py +++ b/Lib/importall.py @@ -26,7 +26,7 @@ for dir in sys.path: s = 'import ' + head print s try: - exec(s + '\n') + exec s + '\n' except KeyboardInterrupt: del names[:] print '\n[interrupt]'