Hi guys, A very small patch to fix improper exception name in rss_example, this prevent me to play with it. I think you can just do the correction by hand [ One Word :) ].. but patch attached. Michele
-- michele tameni http://www.amdplanet.it
From daddb51934d92838accb05970d2fba0636e753d7 Mon Sep 17 00:00:00 2001 From: Michele Tameni <[email protected]> Date: Sat, 21 Nov 2009 09:52:22 +0100 Subject: [PATCH] Small fix to rss_example, correct the name of the exception. --- python/rss_reader/signaler.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/python/rss_reader/signaler.py b/python/rss_reader/signaler.py index efd9005..b73153e 100755 --- a/python/rss_reader/signaler.py +++ b/python/rss_reader/signaler.py @@ -28,7 +28,7 @@ import datetime, random try: import barnum.gen_data as gen_data barnum_available = True -except ImportException: +except ImportError: print "No barnum. Crappy random" barnum_available = False -- 1.6.5.2
_______________________________________________ tracker-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/tracker-list
