diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 19:35:46 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 19:35:46 +0100 |
commit | c1dd1e9e8cb4de692dd0e2560b60ce0872a18490 (patch) | |
tree | 45b1564e5a6acf2cc847f4b38438d907a16a634f /pyload/manager/thread/PluginThread.py | |
parent | Fix bad merge (diff) | |
download | pyload-c1dd1e9e8cb4de692dd0e2560b60ce0872a18490.tar.xz |
Support new key attributes
Diffstat (limited to 'pyload/manager/thread/PluginThread.py')
-rw-r--r-- | pyload/manager/thread/PluginThread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/manager/thread/PluginThread.py b/pyload/manager/thread/PluginThread.py index b27210e31..3cdae122f 100644 --- a/pyload/manager/thread/PluginThread.py +++ b/pyload/manager/thread/PluginThread.py @@ -72,7 +72,7 @@ class PluginThread(Thread): def getDebugDump(self, pyfile): dump = "pyLoad %s Debug Report of %s %s \n\nTRACEBACK:\n %s \n\nFRAMESTACK:\n" % ( - self.m.core.api.getServerVersion(), pyfile.pluginname, pyfile.plugin.__version__, format_exc()) + self.m.core.api.getServerVersion(), pyfile.pluginname, pyfile.plugin.__version, format_exc()) tb = exc_info()[2] stack = [] |