make dummy proxy module py3 compatible

This commit is contained in:
Daniel Wallace 2017-12-13 13:59:18 -07:00
parent 8736e21f65
commit b295ec0429
No known key found for this signature in database
GPG key ID: 5FA5E5544F010D48

View file

@ -140,7 +140,7 @@ def service_list():
List "services" on the REST server
'''
DETAILS = _load_state()
return DETAILS['services'].keys()
return list(DETAILS['services'])
def service_status(name):