diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-08 03:08:17 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-08 03:08:17 +0200 |
commit | 035d8c554c9e24206f9dc6f76e17fbe9e4c3607f (patch) | |
tree | 3b173d98512f33233d4aeb2906493d3abeea2369 /module/plugins/hooks/TransmissionRPC.py | |
parent | Merge pull request #1957 from GammaC0de/patch-3 (diff) | |
download | pyload-035d8c554c9e24206f9dc6f76e17fbe9e4c3607f.tar.xz |
Fixpack (4)
Diffstat (limited to 'module/plugins/hooks/TransmissionRPC.py')
-rw-r--r-- | module/plugins/hooks/TransmissionRPC.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/TransmissionRPC.py b/module/plugins/hooks/TransmissionRPC.py index 715f82edb..5fdbf6402 100644 --- a/module/plugins/hooks/TransmissionRPC.py +++ b/module/plugins/hooks/TransmissionRPC.py @@ -64,15 +64,15 @@ class TransmissionRPC(Addon): req=req) except Exception, e: - self.log_error(e) + self.log_error(e, trace=True) return else: - self.log_error(e) + self.log_error(e, trace=True) return except Exception, e: - self.log_error(e) + self.log_error(e, trace=True) return try: @@ -81,4 +81,4 @@ class TransmissionRPC(Addon): self.log_debug("Result: %s" % res['result']) except Exception, e: - self.log_error(e) + self.log_error(e, trace=True) |