diff options
author | Kristofer Hallin <kristofer@sunet.se> | 2021-10-13 08:49:41 +0200 |
---|---|---|
committer | Kristofer Hallin <kristofer@sunet.se> | 2021-10-13 08:49:41 +0200 |
commit | cd80cf3e00b76d8aa0b2819552525d7959e9dd1b (patch) | |
tree | 0d57cd05bd8d68a0ff899abe75361bcf673ad193 /src | |
parent | 9b42192e54b409b7d6c1a12a8d802bc1edbaf37c (diff) | |
parent | cf963db31d603abbd93ee56271a16603b525dad5 (diff) |
Merge branch 'main' of git.sunet.se:soc_collector
Diffstat (limited to 'src')
-rwxr-xr-x | src/wsgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wsgi.py b/src/wsgi.py index 97965e1..62db3c9 100755 --- a/src/wsgi.py +++ b/src/wsgi.py @@ -75,7 +75,7 @@ class EPGet(CollectorResource): selectors['domain'] = org data = self._db.search(**selectors) if data: - out.append(data) + out += data resp.text = json.dumps({'status': 'success', 'data': out}) |