summaryrefslogtreecommitdiffstats
path: root/Lib/importall.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/importall.py')
-rwxr-xr-xLib/importall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importall.py b/Lib/importall.py
index 1383e80..780862c 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]'