]> granicus.if.org Git - python/commitdiff
Fix tkinter regression introduced by the security fix in #16248.
authorGeorg Brandl <georg@python.org>
Sat, 14 Sep 2013 07:08:09 +0000 (09:08 +0200)
committerGeorg Brandl <georg@python.org>
Sat, 14 Sep 2013 07:08:09 +0000 (09:08 +0200)
Lib/tkinter/__init__.py

index a6ad88823a8bd3a3efcf4062942c7722ef0108ff..1286779b990250aef76ab510e78c5ea4d16e0211 100644 (file)
@@ -1722,7 +1722,7 @@ class Tk(Misc, Wm):
         # ensure that self.tk is always _something_.
         self.tk = None
         if baseName is None:
-            import sys, os
+            import os
             baseName = os.path.basename(sys.argv[0])
             baseName, ext = os.path.splitext(baseName)
             if ext not in ('.py', '.pyc', '.pyo'):