From e1dcc01d3ae992740ce667819a355d87ae11f772 Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 17 Apr 2017 13:18:34 -0400 Subject: [PATCH] pep8 fix for Shippable --- lib/ansible/modules/network/nxos/nxos_rollback.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/network/nxos/nxos_rollback.py b/lib/ansible/modules/network/nxos/nxos_rollback.py index f3574b70c50..6b6e4122f88 100644 --- a/lib/ansible/modules/network/nxos/nxos_rollback.py +++ b/lib/ansible/modules/network/nxos/nxos_rollback.py @@ -81,6 +81,7 @@ status: from ansible.module_utils.nxos import nxos_argument_spec, run_commands from ansible.module_utils.basic import AnsibleModule + def checkpoint(filename, module): commands = ['terminal dont-ask', 'checkpoint file %s' % filename] run_commands(module, commands)