diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-09-26 16:40:38 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-09-26 16:40:50 +0200 |
commit | 967d6dd16c25ceba22dcd105079f72534ddb87e9 (patch) | |
tree | 4c971ff446dc955f1884e5aa80ef4cb62bbf55fe /pyload/Core.py | |
parent | new DLC plugins (diff) | |
download | pyload-967d6dd16c25ceba22dcd105079f72534ddb87e9.tar.xz |
rewritten decrypter and info fetching thread
Diffstat (limited to 'pyload/Core.py')
-rw-r--r-- | pyload/Core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/Core.py b/pyload/Core.py index 2d591a2bb..f97cfcf3b 100644 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -599,8 +599,8 @@ class Core(object): if not self.pdb: self.pdb = Pdb() self.pdb.set_trace() - def print_exc(self): - if self.debug: + def print_exc(self, force=False): + if self.debug or force: print_exc() def path(self, *args): |