1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

added missing import for pwd, was being obscured by exception catching and fallback

This commit is contained in:
Brian Coca 2015-10-01 18:56:30 -04:00
parent a680ef66dd
commit 6d6bfbc3d2

View file

@ -20,6 +20,7 @@ __metaclass__ = type
import base64
import datetime
import os
import pwd
import time
from ansible import constants as C