summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfirstaidkit/errors.py')
-rw-r--r--pyfirstaidkit/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyfirstaidkit/errors.py b/pyfirstaidkit/errors.py
index 61a04be..b967bc9 100644
--- a/pyfirstaidkit/errors.py
+++ b/pyfirstaidkit/errors.py
@@ -23,7 +23,7 @@ class InvalidFlowStateException(Exception):
return self.message
class InvalidFlowNameException(Exception):
- def __init__(self, name, flow):
+ def __init__(self, name):
self.message="There are no flows by the name of %s" % name
def __str__(self):
return self.message