From 685653b23b9d455507e6fa472de7cd3b8c03ee6c Mon Sep 17 00:00:00 2001
From: Dag Wieers <dag@wieers.com>
Date: Wed, 17 Jun 2015 15:22:10 +0200
Subject: [PATCH] Another incompatibility with python 2.4

---
 system/osx_defaults.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/osx_defaults.py b/system/osx_defaults.py
index 7e2fe38ad77..e5d2bc51731 100644
--- a/system/osx_defaults.py
+++ b/system/osx_defaults.py
@@ -343,7 +343,7 @@ def main():
                                array_add=array_add, value=value, state=state, path=path)
         changed = defaults.run()
         module.exit_json(changed=changed)
-    except OSXDefaultsException as e:
+    except OSXDefaultsException, e:
         module.fail_json(msg=e.message)
 
 # /main ------------------------------------------------------------------- }}}