Since people may not have the libvte python bindings installed, whige at them nicely

This commit is contained in:
Chris Jones 2007-07-29 19:09:33 +01:00
parent f7011c12e5
commit eb69c51862
1 changed files with 5 additions and 1 deletions

View File

@ -19,7 +19,11 @@ import sys
import string
import gobject
import gtk
import vte
try:
import vte
except:
print '''You need to install python bindings for libvte ("python-vte" in debian/ubuntu)'''
sys.exit (1)
import gconf
import pango
import gnome