fixed name colision between warnings dict and module
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
This commit is contained in:
parent
7061c99049
commit
bd9acedb57
1 changed files with 3 additions and 3 deletions
|
@ -47,7 +47,7 @@ VERBOSITY=0
|
|||
|
||||
# list of all deprecation messages to prevent duplicate display
|
||||
deprecations = {}
|
||||
warnings = {}
|
||||
warns = {}
|
||||
|
||||
MAX_FILE_SIZE_FOR_DIFF=1*1024*1024
|
||||
|
||||
|
@ -990,9 +990,9 @@ def warning(msg):
|
|||
new_msg = "\n[WARNING]: %s" % msg
|
||||
wrapped = textwrap.wrap(new_msg, 79)
|
||||
new_msg = "\n".join(wrapped) + "\n"
|
||||
if new_msg not in warnings:
|
||||
if new_msg not in warns:
|
||||
display(new_msg, color='bright purple', stderr=True)
|
||||
warnings[new_msg] = 1
|
||||
warns[new_msg] = 1
|
||||
|
||||
def combine_vars(a, b):
|
||||
|
||||
|
|
Loading…
Reference in a new issue