diff options
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): | 
