##// END OF EJS Templates
add a check to verify is wx.aui is present on the system.\n Else tells the user to install wxpython > 2.8.0
Laurent Dufrechou -
Show More
@@ -1,8 +1,13 b''
1 #!/usr/bin/python
1 #!/usr/bin/python
2 # -*- coding: iso-8859-15 -*-
2 # -*- coding: iso-8859-15 -*-
3
3
4 import wx.aui
5 import sys
4 import sys
5 try:
6 import wx.aui
7 except ImportError:
8 print "Can't laod wx.aui module, please check that you have installed wxpython > 2.8 and taht it is your default install"
9 sys.exit(1)
10
6 #used for about dialog
11 #used for about dialog
7 from wx.lib.wordwrap import wordwrap
12 from wx.lib.wordwrap import wordwrap
8
13
General Comments 0
You need to be logged in to leave comments. Login now