fix gfceux

This commit is contained in:
qeed 2009-09-07 12:48:49 +00:00
parent b34699c371
commit f3f13bdaee
1 changed files with 6 additions and 1 deletions

7
gfceux
View File

@ -1,10 +1,15 @@
#!/usr/bin/env python2.6
#!/usr/bin/env python
#
# GTK2 GUI for FCE UltraX
#
# Lukas Sabota <ltsmooth42 _at_ gmail _dot_ com>
#
# <http://fceux.com>
import platform
if platform.python_version() < '2.5.0':
print "Python version too old, use one greater than 2.5.0";
exit();
try:
from src import main
except: