diff options
-rw-r--r-- | ipsutils/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsutils/task.py b/ipsutils/task.py index 7179151..7b45309 100644 --- a/ipsutils/task.py +++ b/ipsutils/task.py @@ -28,7 +28,7 @@ class TaskController(object): """ for stack_entry in self.stack: status = stack_entry.run() - if type(status) == type(bool): + if type(status) == type(True): if not status: print("Internal error: {0:s}".format(status)) exit(status) |