diff --git a/gfceux b/gfceux index 9c8291c9..b5e74dcf 100755 --- a/gfceux +++ b/gfceux @@ -1,10 +1,15 @@ -#!/usr/bin/env python2.6 +#!/usr/bin/env python # # GTK2 GUI for FCE UltraX # # Lukas Sabota # # +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: