summaryrefslogtreecommitdiffstats
path: root/lib/modules/fetch_cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/modules/fetch_cmd.py')
-rw-r--r--lib/modules/fetch_cmd.py4
1 files changed, 2 insertions, 2 deletions
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 <guilhem@fripost.org>
@@ -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)