Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Mar 25, 2014
1 parent d61edb0 commit 435eb90
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cura/gui/app.py
Expand Up @@ -7,8 +7,11 @@
import glob
import warnings

#Only import the _core to save import time
import wx._core
try:
#Only try to import the _core to save import time
import wx._core
except ImportError:
import wx


class CuraApp(wx.App):
Expand Down

0 comments on commit 435eb90

Please sign in to comment.