diff options
author | Mattias Andrée <maandree@kth.se> | 2016-08-06 23:41:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-08-06 23:41:50 +0200 |
commit | b4e1d0f40c15f691ef70f663f77d78e46e1e235f (patch) | |
tree | c9f4bb06d61d159bedcea85a6c23b0d038dc32d9 | |
parent | Add clone and __repr__ functions (diff) | |
download | pylibcoopgamma-b4e1d0f40c15f691ef70f663f77d78e46e1e235f.tar.gz pylibcoopgamma-b4e1d0f40c15f691ef70f663f77d78e46e1e235f.tar.bz2 pylibcoopgamma-b4e1d0f40c15f691ef70f663f77d78e46e1e235f.tar.xz |
m fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | src/libcoopgamma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoopgamma.py b/src/libcoopgamma.py index de732be..3c9cab1 100644 --- a/src/libcoopgamma.py +++ b/src/libcoopgamma.py @@ -530,7 +530,7 @@ class ErrorReport: @return :str Parsable representation of the instance ''' params = (self.number, self.custom, self.server_side, self.description) - return 'ErrorReport.FilterTable(%s)' % ', '.join(repr(p) for p in params) + return 'libcoopgamma.ErrorReport(%s)' % ', '.join(repr(p) for p in params) class Context: |