diff options
Diffstat (limited to 'lib/modules/postmulti')
-rw-r--r-- | lib/modules/postmulti | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/modules/postmulti b/lib/modules/postmulti index d6ecb09..3c0a522 100644 --- a/lib/modules/postmulti +++ b/lib/modules/postmulti @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Create and manage postfix instances. # Copyright (c) 2013 Guilhem Moulin <guilhem@fripost.org> @@ -94,7 +94,7 @@ def main(): module.exit_json(changed=changed) - except subprocess.CalledProcessError, e: + except subprocess.CalledProcessError as e: module.fail_json(rv=e.returncode, msg=e.output.rstrip()) |