From 7f99876274f01ed187c51b73d175300306cd6041 Mon Sep 17 00:00:00 2001 From: tobald Date: Sun, 8 Apr 2018 18:54:32 +0200 Subject: [PATCH] remove duplicate declaration (#38449) result['uid'] is already defined at line 2213 in user.py module. --- lib/ansible/modules/system/user.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/modules/system/user.py b/lib/ansible/modules/system/user.py index 708850c08d0..d57bfba0b90 100644 --- a/lib/ansible/modules/system/user.py +++ b/lib/ansible/modules/system/user.py @@ -2215,7 +2215,6 @@ def main(): result['comment'] = info[4] result['home'] = info[5] result['shell'] = info[6] - result['uid'] = info[2] if user.groups is not None: result['groups'] = user.groups