]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/encode_bitmaps.py
Corrected _setCallbackInfo code so GiveFeedback can work
[wxWidgets.git] / wxPython / demo / encode_bitmaps.py
index dd5196b41670778798bb8284037d734ac63c01cf..37db1b1b855741cb37f23df5b8ed54b28ed7704e 100644 (file)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-#----------------------------------------------------------------------
 
 """
 This is a way to save the startup time when running img2py on lots of
@@ -7,7 +5,8 @@ files...
 """
 
 import sys
-from wxPython.tools import img2py
+
+from wx.tools import img2py
 
 
 command_lines = [
@@ -118,7 +117,8 @@ command_lines = [
     ]
 
 
-for line in command_lines:
-    args = line.split()
-    img2py.main(args)
+if __name__ == "__main__":
+    for line in command_lines:
+        args = line.split()
+        img2py.main(args)