Commit 54ac0fe9 by Michael DeHaan

Merge pull request #7343 from lberruti/alternatives_python5_2

Make alternatives module python 2.5 compatible
parents 4ee0898f a3d1f06c
......@@ -126,7 +126,7 @@ def main():
)
module.exit_json(changed=True)
except subprocess.CalledProcessError as cpe:
except subprocess.CalledProcessError, cpe:
module.fail_json(msg=str(dir(cpe)))
else:
module.exit_json(changed=False)
......
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