Fix exception catching for py2.4

This commit is contained in:
Tim Bielawa 2012-03-29 14:19:09 -04:00
parent 72cc99722d
commit 5261d14aef

View file

@ -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)