mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove unnecessary warnings (#18121)
This commit is contained in:
parent
492da6ce71
commit
cd784cd345
1 changed files with 0 additions and 7 deletions
|
@ -26,12 +26,6 @@ from ansible.compat.six.moves import builtins
|
|||
from ansible import constants as C
|
||||
from ansible.plugins import filter_loader, test_loader
|
||||
|
||||
try:
|
||||
from __main__ import display
|
||||
except ImportError:
|
||||
from ansible.utils.display import Display
|
||||
display = Display()
|
||||
|
||||
def safe_eval(expr, locals={}, include_exceptions=False):
|
||||
'''
|
||||
This is intended for allowing things like:
|
||||
|
@ -143,7 +137,6 @@ def safe_eval(expr, locals={}, include_exceptions=False):
|
|||
return (expr, None)
|
||||
return expr
|
||||
except Exception as e:
|
||||
display.warning('Exception in safe_eval() on expr: %s (%s)' % (expr, e))
|
||||
if include_exceptions:
|
||||
return (expr, e)
|
||||
return expr
|
||||
|
|
Loading…
Reference in a new issue