From ee1cb1e40011fb394d47fd20d0b225b6a4d88964 Mon Sep 17 00:00:00 2001 From: Bryan Clark Date: Mon, 30 Aug 2004 04:23:54 +0000 Subject: [PATCH] 2004-08-30 Bryan Clark * examples/python/systray/network_tray.py: Added nice message when you try to run without running make first git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@108 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 3 +++ examples/python/systray/network_tray.py | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6740008906..17e918c520 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-08-30 Bryan Clark + * examples/python/systray/network_tray.py: + Added nice message when you try to run without running make first + * examples/python/NetworkManager.py: Bug fixes to the code so we get all the device information that we need in get_device() diff --git a/examples/python/systray/network_tray.py b/examples/python/systray/network_tray.py index 2f5043177d..fc49805cc2 100755 --- a/examples/python/systray/network_tray.py +++ b/examples/python/systray/network_tray.py @@ -2,8 +2,14 @@ import pygtk; pygtk.require("2.0") import gtk import gtk.gdk -import trayicon -from NetworkManager import NetworkManager + +try: + import trayicon + from NetworkManager import NetworkManager +except: + print "type 'make' make the necessary modules to run this example" + import sys + sys.exit(1) class network_tray: