Since people may not have the libvte python bindings installed, whige at them nicely
This commit is contained in:
parent
f7011c12e5
commit
eb69c51862
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue