Commit 011a0ecb by Michael DeHaan

Merge pull request #90 from tbielawa/except

Fix exception catching for py2.4
parents 72cc9972 5261d14a
......@@ -175,7 +175,7 @@ if __name__ == '__main__':
(options, args) = cli.parse()
try:
(runner, results) = cli.run(options, args)
except errors.AnsibleError as e:
except errors.AnsibleError, e:
# Generic handler for ansible specific errors
print "ERROR: %s" % str(e)
sys.exit(1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment