From 35980ef329c98728b1e5706a2211d15129ba0b64 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 23 Dec 2013 14:09:15 -0500 Subject: [PATCH] making pylint happier Signed-off-by: Brian Coca --- library/system/debconf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/library/system/debconf b/library/system/debconf index bd8dedfdfcd..7324e7de6f1 100644 --- a/library/system/debconf +++ b/library/system/debconf @@ -85,7 +85,7 @@ def get_selections(module, pkg): if rc == 0: selections = {} - for line in out.splitlines(): + for line in out.splitlines(): #if not line.startswith('*'): # only awnsered # continue (key, value) = line.split(':') @@ -160,5 +160,3 @@ def main(): # this is magic, see lib/ansible/module_common.py #<> main() - -