This commit is contained in:
Gaetan Delannay 2014-06-24 08:31:39 +02:00
parent f2571d2671
commit 477db8a21c
6 changed files with 1846 additions and 1835 deletions

View file

@ -51,8 +51,9 @@ class BufferAction:
self.subAction = None
def getExceptionLine(self, e):
'''Gets the line describing exception p_e, containing the pathname of
the exception class, the exception's message and line number.'''
'''Gets the line describing exception p_e, containing the exception
class, message and line number.'''
return '%s: %s' % (e.__class__.__name__, str(e))
return '%s.%s: %s' % (e.__module__, e.__class__.__name__, str(e))
def manageError(self, result, context, errorMessage, dumpTb=True):

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

Binary file not shown.