Activity log for bug #139486

Date Who What changed Old value New value Message
2007-09-13 22:17:55 Gavin bug added bug
2007-09-13 22:18:36 Gavin bug added attachment 'fix.patch' (Small fix.)
2007-09-13 22:18:57 Gavin description Version: 0.2.11svn Reproduce: Enabling DAAP music plugin without python-daap installed. Result: (Brokenly) enabled. Stacktrace: Traceback (most recent call last): File "/usr/lib/exaile/xl/plugins/gui.py", line 344, in toggle_cb except plugins.PluginInitException, e: NameError: global name 'plugins' is not defined Traceback (most recent call last): File "/usr/lib/exaile/exaile.py", line 136, in <module> main() File "/usr/lib/exaile/exaile.py", line 132, in main gtk.main() KeyboardInterrupt Small Fix: --- gui.py 2007-09-13 23:15:07.000000000 +0100 +++ /usr/lib/exaile/xl/plugins/gui.py 2007-09-13 23:10:11.000000000 +0100 @@ -341,7 +341,7 @@ PLUGIN_ENABLED = False print "Error initializing plugin" model[path][2] = False - except plugins.PluginInitException, e: + except xl.plugins.PluginInitException, e: show_error(self.parent, str(e)) model[path][2] = False else: Version: 0.2.11svn Reproduce: Enabling DAAP music plugin without python-daap installed. Result: (Brokenly) enabled. Stacktrace: Traceback (most recent call last): File "/usr/lib/exaile/xl/plugins/gui.py", line 344, in toggle_cb except plugins.PluginInitException, e: NameError: global name 'plugins' is not defined Traceback (most recent call last): File "/usr/lib/exaile/exaile.py", line 136, in <module> main() File "/usr/lib/exaile/exaile.py", line 132, in main gtk.main() KeyboardInterrupt Patch attached.
2007-09-13 22:39:23 Adam Olsen exaile: importance Undecided Low
2007-09-13 22:39:23 Adam Olsen exaile: assignee arolsen
2007-09-13 22:39:23 Adam Olsen exaile: status New Fix Committed
2009-06-30 14:45:48 Johannes Sasongko exaile: status Fix Committed Fix Released