Swapping the order in the func_alias so the ls function is available.

This commit is contained in:
Gareth J. Greenaway 2017-05-16 15:40:41 -07:00
parent a10f0146a4
commit 780a28c9a0

View File

@ -61,7 +61,7 @@ api = None
# Define the module's virtual name
__virtualname__ = 'consul'
__func_alias__ = {'ls': 'list'}
__func_alias__ = {'list': 'ls'}
def __virtual__():