exec() -> exec
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 @@
 			s = 'import ' + head
 			print s
 			try:
-				exec(s + '\n')
+				exec s + '\n'
 			except KeyboardInterrupt:
 				del names[:]
 				print '\n[interrupt]'