+elif zenityAvailable():
+ import subprocess
+ from zenity_dialogue import run as setup # this provides the setup function
+
+ def error(message):
+ '''Displays a fatal error to the user'''
+ subprocess.check_call(["zenity", "--error", "--text="+message])
+else:
+ print >> sys.stderr, 'No GUI frontend available, please make sure PyQt4 or Zenity is installed'