From 8b3ae1e806249e4006645bc40fdf7d2614841703 Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Tue, 13 Sep 2016 13:40:32 -0400 Subject: [PATCH] Cleanup netcfg.py (#17531) Closes #17412 --- lib/ansible/module_utils/netcfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/netcfg.py b/lib/ansible/module_utils/netcfg.py index d4abce070a..857ffa1dc3 100644 --- a/lib/ansible/module_utils/netcfg.py +++ b/lib/ansible/module_utils/netcfg.py @@ -51,7 +51,7 @@ class Config(object): def __call__(self, commands): lines = to_list(commands) - return self.connection.configure(commands) + return self.connection.configure(lines) def load_config(self, commands, **kwargs): commands = to_list(commands)