fixed printing to stderr. display a simple error message if vte isn't found, we're running crussh from the command line anyways.

This commit is contained in:
Jeff Fisher 2012-03-17 09:08:49 -06:00
parent ef6b38ec73
commit 4a1633acc3

View File

@ -10,16 +10,17 @@ import sys
import math
import json
import os.path
try:
import gtk
except:
print(sys.stderr, "Missing Python GTK2 bindings.")
print >>sys.stderr, "Missing Python GTK2 bindings."
sys.exit(1)
try:
import vte
except:
error = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK,
"Missing Python VTE bindings.")
error.run()
print >>sys.stderr, "Missing Python VTE bindings."
sys.exit(1)
### Config Dialog ###