From 3d437b068e8ed058f4ea9a06fdd8fea5569c3592 Mon Sep 17 00:00:00 2001 From: Fabrice Bernhard Date: Thu, 27 Nov 2014 12:36:34 +0100 Subject: [PATCH] Typo in comments Credit goes to @kbsali @pborreli : you did not see that one? :-) --- lib/ansible/modules/system/authorized_key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/authorized_key.py b/lib/ansible/modules/system/authorized_key.py index f964113127e..d5792200b8d 100644 --- a/lib/ansible/modules/system/authorized_key.py +++ b/lib/ansible/modules/system/authorized_key.py @@ -333,7 +333,7 @@ def enforce_state(module, params): state = params.get("state", "present") key_options = params.get("key_options", None) - # extract indivial keys into an array, skipping blank lines and comments + # extract individual keys into an array, skipping blank lines and comments key = [s for s in key.splitlines() if s and not s.startswith('#')]