Skip to content

Commit

Permalink
added missing 'be'
Browse files Browse the repository at this point in the history
  • Loading branch information
scottidler committed Jul 21, 2019
1 parent f103784 commit 8517665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doit/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, task_list, auto_delayed_regex=False):
for task in task_list:
# task must be a Task
if not isinstance(task, Task):
msg = "Task must an instance of Task class. %s"
msg = "Task must be an instance of Task class. %s"
raise InvalidTask(msg % (task.__class__))
# task name must be unique
if task.name in self.tasks:
Expand Down

0 comments on commit 8517665

Please sign in to comment.