Fixed imports to run on Windows
This commit is contained in:
parent
879e423d84
commit
8aa15b96b3
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue