This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
SOAPpy
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#18
from baldulin/develop
fix missing self in Errors.py
main
Mathieu Le Marec - Pasquet
9 years ago
parent
e2f6883a2b
f1ae0b9576
commit
9ec9de2b57
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save