Fixed imports to run on Windows

This commit is contained in:
Skyler Lehmkuhl 2012-01-05 18:11:55 -08:00
parent 879e423d84
commit 8aa15b96b3
1 changed files with 1 additions and 0 deletions

View File

@ -134,6 +134,7 @@ if sys.platform=="linux2":
sep = "/" sep = "/"
elif sys.platform=="win32": elif sys.platform=="win32":
import pickle import pickle
import misc_funcs
import GUI # Using PyGUI. Experimental. import GUI # Using PyGUI. Experimental.
from GUI import Window as OSXWindow, Button as OSXButton, Image as OSXImage from GUI import Window as OSXWindow, Button as OSXButton, Image as OSXImage
from GUI import Frame as OSXFrame, Color as OSXColor, Grid as OSXGrid from GUI import Frame as OSXFrame, Color as OSXColor, Grid as OSXGrid