gentoo-full-overlay/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch

16 lines
315 B
Diff

--- DSV/DSV.py
+++ DSV/DSV.py
@@ -134,6 +134,13 @@
os.putenv('LANG', 'C')
try:
+ import wxversion
+ wxversion.select("2.8")
+except Exception, e:
+ print >> sys.stderr, "%s: wxPython 2.8 not installed." %e
+ sys.exit(1)
+
+try:
from wxPython import wx, grid
except ImportError:
wx = None