summaryrefslogtreecommitdiff
path: root/system/iptables.py
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2015-10-31 14:31:08 -0400
committerBrian Coca <brian.coca+git@gmail.com>2015-10-31 14:31:08 -0400
commit360734ec09a2d4028f960509263f40bddb49b403 (patch)
tree49093b1f3f28a8ae4075b6187e42c83ce590dd82 /system/iptables.py
parent286d5bfb9150e2f2797f829e398352648aff3d64 (diff)
downloadansible-modules-extras-360734ec09a2d4028f960509263f40bddb49b403.tar.gz
whitespace fixes
Diffstat (limited to 'system/iptables.py')
-rw-r--r--system/iptables.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/iptables.py b/system/iptables.py
index 7a2b7f9c..726a5d7e 100644
--- a/system/iptables.py
+++ b/system/iptables.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-
+#
# (c) 2015, Linus Unnebäck <linus@folkdatorn.se>
#
# This file is part of Ansible
@@ -226,8 +226,8 @@ def append_param(rule, param, flag, is_list):
def append_comm(rule, param):
if param:
- rule.extend(['-m'])
- rule.extend(['comment'])
+ rule.extend(['-m'])
+ rule.extend(['comment'])
def construct_rule(params):
@@ -295,7 +295,7 @@ def main():
source_port=dict(required=False, default=None, type='str'),
destination_port=dict(required=False, default=None, type='str'),
to_ports=dict(required=False, default=None, type='str'),
- comment=dict(required=False, default=None, type='str'),
+ comment=dict(required=False, default=None, type='str'),
),
)
args = dict(