From b7ca428dfb06dc08356a6dfbce27ab83a01cf72f Mon Sep 17 00:00:00 2001 From: Graeme Humphries Date: Thu, 15 Mar 2012 10:16:49 -0700 Subject: [PATCH] Removed Debian-specific error messages. --- crussh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crussh.py b/crussh.py index bf6eb8b..3293947 100755 --- a/crussh.py +++ b/crussh.py @@ -13,12 +13,12 @@ import math try: import gtk except: - print(sys.stderr, "Missing Python GTK2 bindings. (apt-get install python-gtk2)") + print(sys.stderr, "Missing Python GTK2 bindings.") try: import vte except: error = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, - "Missing Python VTE bindings. (apt-get install python-vte)") + "Missing Python VTE bindings.") error.run() sys.exit(1)