From eb69c51862d4bcc3091f908ae5fc14b14c2bf454 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 29 Jul 2007 19:09:33 +0100 Subject: [PATCH] Since people may not have the libvte python bindings installed, whige at them nicely --- terminator.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/terminator.py b/terminator.py index b7c50a0e..3b5adb99 100755 --- a/terminator.py +++ b/terminator.py @@ -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