diff options
-rw-r--r-- | pyfirstaidkit/errors.py | 2 | ||||
-rw-r--r-- | pyfirstaidkit/issue.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/errors.py b/pyfirstaidkit/errors.py index 061703e..04a396e 100644 --- a/pyfirstaidkit/errors.py +++ b/pyfirstaidkit/errors.py @@ -18,7 +18,7 @@ class InvalidFlowStateException(Exception): def __init__(self, flow): - self.message="There appears to be an inconsistency with the %s " + self.message="There appears to be an inconsistency with the %s " \ "varialbe. " % flow def __str__(self): return self.message diff --git a/pyfirstaidkit/issue.py b/pyfirstaidkit/issue.py index 3896d5c..2c956a6 100644 --- a/pyfirstaidkit/issue.py +++ b/pyfirstaidkit/issue.py @@ -96,7 +96,7 @@ Return values: class Issue(SimpleIssue): name = "Parent issue" - description = "This happens when you use the wrong object in the issues " + description = "This happens when you use the wrong object in the issues " \ "list" def __init__(self, plugin, reporting = None): |