summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorEmmanuel Raviart <eraviart@entrouvert.com>2004-08-19 09:08:53 +0000
committerEmmanuel Raviart <eraviart@entrouvert.com>2004-08-19 09:08:53 +0000
commita8611528f6be178eb053bdafabb905664f89bf0a (patch)
tree63afea1d8dfde8fd526a0157fe8bccd3cfeccd6f /python/lasso.py
parentfd7ab24a5bea1d433fae3bc9f5b5636de897b97e (diff)
downloadlasso-a8611528f6be178eb053bdafabb905664f89bf0a.tar.gz
lasso-a8611528f6be178eb053bdafabb905664f89bf0a.tar.xz
lasso-a8611528f6be178eb053bdafabb905664f89bf0a.zip
__str__ should not have arguments.
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lasso.py b/python/lasso.py
index b9869cc2..77cd8d61 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -5,7 +5,7 @@
#
# PyLasso - Python bindings for Lasso Library
#
-# Copyright (C) 2003-2004 Easter-eggs, Valery Febvre
+# Copyright (C) 2004 Entr'ouvert
# http://lasso.entrouvert.org
#
# Author: Valery Febvre <vfebvre@easter-eggs.com>
@@ -70,7 +70,7 @@ class ErrorLassoNotInitialized(Error):
class ErrorInstanceCreationFailed(Error):
code = 3
- def __str__(self, functionName):
+ def __str__(self):
return 'Instance creation failed in Lasso function %s()' % self.functionName