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/fetch_cmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/modules/fetch_cmd.py') diff --git a/lib/modules/fetch_cmd.py b/lib/modules/fetch_cmd.py index ac8757f..ca3e817 100644 --- a/lib/modules/fetch_cmd.py +++ b/lib/modules/fetch_cmd.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Fetch the output of a remote command # Copyright (c) 2016 Guilhem Moulin @@ -48,7 +48,7 @@ def main(): if stdin is not None: stdin.close() - except KeyError, e: + except KeyError as e: module.fail_json(msg=str(e)) module.exit_json(changed=changed) -- cgit v1.2.3