From e5cc4a45d3b75a4a8ecb8a1a236908e7a24972f9 Mon Sep 17 00:00:00 2001 From: Michael Herold Date: Sun, 6 Nov 2016 22:36:45 +0100 Subject: [PATCH] Removes outdated "requirement" and outdated "note" (#5332) - 7f59773460d79b3dae34c375ba68caea1bfc09a8 no longer uses `ConfigParser` - 1d4c0abe2902d91b2895452feedcf72bf3dd9e20 removed the `import` statement --- lib/ansible/modules/files/ini_file.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/ansible/modules/files/ini_file.py b/lib/ansible/modules/files/ini_file.py index d2b68f1645..e529987ad3 100644 --- a/lib/ansible/modules/files/ini_file.py +++ b/lib/ansible/modules/files/ini_file.py @@ -89,12 +89,9 @@ options: notes: - While it is possible to add an I(option) without specifying a I(value), this makes no sense. - - A section named C(default) cannot be added by the module, but if it exists, individual - options within the section can be updated. (This is a limitation of Python's I(ConfigParser).) - Either use M(template) to create a base INI file with a C([default]) section, or use - M(lineinfile) to add the missing line. -requirements: [ ConfigParser ] -author: "Jan-Piet Mens (@jpmens), Ales Nosek" +author: + - "Jan-Piet Mens (@jpmens)" + - "Ales Nosek (@noseka1)" ''' EXAMPLES = '''