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 04a396e..2c91d2e 100644
--- a/pyfirstaidkit/errors.py
+++ b/pyfirstaidkit/errors.py
@@ -31,7 +31,7 @@ class InvalidFlowNameException(Exception):
class InvalidPluginNameException(Exception):
def __init__(self, name):
- self.message="There are no flows by the name of %s" % name
+ self.message="No flows by the name of \"%s\" where found." % name
def __str__(self):
return self.message