Author: damoxc
Revision: 5609
Log:
remove the paranthesis from the decorators in core.py
Diff:
Modified: trunk/deluge/scripts/create_plugin.py
===================================================================
--- trunk/deluge/scripts/create_plugin.py 2009-08-01 03:00:04 UTC (rev
5608)
+++ trunk/deluge/scripts/create_plugin.py 2009-08-03 11:46:49 UTC (rev
5609)
@@ -119,14 +119,14 @@
def update(self):
pass
- @export()
+ @export
def set_config(self, config):
"sets the config dictionary"
for key in config.keys():
self.config[key] = config[key]
self.config.save()
- @export()
+ @export
def get_config(self):
"returns the config dictionary"
return self.config.config
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---