Fix typo in wheel (my mistake)

This commit is contained in:
Mike Place 2016-08-22 14:45:26 +09:00
parent 1c00cd34cf
commit 8ab1fbae3e

View File

@ -50,7 +50,7 @@ class WheelClient(salt.client.mixins.SyncClientMixin,
'''
Backwards compatibility
'''
return self.low(fun, kwargs, print_event=low.get('print_event', True), full_return=low.get('full_return', False))
return self.low(fun, kwargs, print_event=kwargs.get('print_event', True), full_return=kwargs.get('full_return', False))
# TODO: Inconsistent with runner client-- the runner client's master_call gives
# an async return, unlike this