diff options
Diffstat (limited to 'src/wsgi.py')
-rwxr-xr-x | src/wsgi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wsgi.py b/src/wsgi.py index ef1e36f..e99ac74 100755 --- a/src/wsgi.py +++ b/src/wsgi.py @@ -99,8 +99,8 @@ class EPAdd(CollectorResource): resp.text = CollectorResource.parse_error(decodedin) return - key = self._db.add(json_data) - resp.text = repr(key) + '\n' + keys = self._db.add(json_data) + resp.text = repr(keys) + '\n' def init(url_res_map, addr='', port=8000): |