From d3efb27c23f3317d83946b060158c8b19c1621e2 Mon Sep 17 00:00:00 2001 From: Thomas Goodwin Date: Mon, 13 Jul 2015 13:33:58 -0400 Subject: [PATCH] Fix for issue #1 Tab was out of place preventing this method from returning the list of services. --- model/domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/domain.py b/model/domain.py index 8a0d31c..fbddff6 100644 --- a/model/domain.py +++ b/model/domain.py @@ -218,5 +218,5 @@ def services(self, dev_mgr_id): ret_dict = [] for svc in svcs: ret_dict.append({'name': svc._instanceName, 'id': svc._refid}) - return ret_dict + return ret_dict