remove warning/deprecation keys after usage

pull/21148/head
Brian Coca 8 years ago
parent 942ed146c3
commit 82337cf52a

@ -103,9 +103,11 @@ class CallbackBase:
if 'warnings' in res and res['warnings']: if 'warnings' in res and res['warnings']:
for warning in res['warnings']: for warning in res['warnings']:
self._display.warning(warning) self._display.warning(warning)
del res['warnings']
if 'deprecations' in res and res['deprecations']: if 'deprecations' in res and res['deprecations']:
for warning in res['deprecations']: for warning in res['deprecations']:
self._display.deprecated(**warning) self._display.deprecated(**warning)
del res['deprecations']
def _get_diff(self, difflist): def _get_diff(self, difflist):

Loading…
Cancel
Save