Browse Source

Merge pull request #18 from baldulin/develop

fix missing self in Errors.py
main
Mathieu Le Marec - Pasquet 9 years ago
parent
commit
9ec9de2b57
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/SOAPpy/Errors.py

+ 1
- 1
src/SOAPpy/Errors.py View File

@@ -55,7 +55,7 @@ class Error(exceptions.Exception):
return "<Error : %s>" % self.msg
__repr__ = __str__
def __call__(self):
return (msg,)
return (self.msg,)

class RecursionError(Error):
pass


Loading…
Cancel
Save