Fix compatibility issues on Gentoo.

master
Sergiusz B 2013-05-30 16:31:49 +02:00
parent 54fd879825
commit fdb8b0bebe
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# This file is part of the Printrun suite.
#
@ -19,7 +19,8 @@ import os, Queue, re
from printrun.printrun_utils import install_locale
install_locale('pronterface')
import wxversion
wxversion.select("2.8")
try:
import wx
except: