From c19f6525465065496c485a5084a86707e4923580 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Tue, 5 Feb 2019 23:51:13 +0100 Subject: Port custom modules to python3. --- lib/modules/postmap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/modules/postmap') diff --git a/lib/modules/postmap b/lib/modules/postmap index 8c9d54c..ce09018 100644 --- a/lib/modules/postmap +++ b/lib/modules/postmap @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Create or update postfix's alias and lookup tables # Copyright (c) 2013 Guilhem Moulin @@ -97,7 +97,7 @@ def main(): changed = True if not module.check_mode: msg = compile( cmd, instance, db, src) - except subprocess.CalledProcessError, e: + except subprocess.CalledProcessError as e: module.fail_json(rv=e.returncode, msg=e.output.rstrip()) changed = module.set_file_attributes_if_different(file_args, changed) -- cgit v1.2.3