Update of /cvsroot/todo-manager/todo-manager
In directory sc8-pr-cvs1:/tmp/cvs-serv675
Modified Files:
main.py
Log Message:
There was a small bug here when the user opted to not load plugins
Index: main.py
===================================================================
RCS file: /cvsroot/todo-manager/todo-manager/main.py,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- main.py 26 Apr 2003 22:08:13 -0000 1.76
+++ main.py 26 Apr 2003 22:19:08 -0000 1.77
@@ -858,9 +858,10 @@
def get_plugin_info(self):
"""Return information on all available plugins"""
+ new_plgs = [] # Holds the cleaned plugins
+
if self.get_setting("Core", "loadplugins", TRUE) and _load_plugins:
plgs = plugin._loaded_plugins
- new_plgs = []
for p in plgs:
a = p.copy()
|