diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-05-11 18:55:40 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2017-05-11 19:01:04 +0200 |
commit | 293102094bab00f15bdba90e230f010d18704a89 (patch) | |
tree | ff8772979f59e14672c4237fc44c696b98cabafc /src/leap/bitmask/core | |
parent | 0a1545ce2ee9de30f583685504932bcc98c601f5 (diff) |
[bug] return core status as json instead of string
- Resolves: #8886
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/core/service.py b/src/leap/bitmask/core/service.py index cb520867..310ac08e 100644 --- a/src/leap/bitmask/core/service.py +++ b/src/leap/bitmask/core/service.py @@ -301,7 +301,7 @@ class BackendCommands(object): status[name] = _status status['backend'] = flags.BACKEND - return json.dumps(status) + return status def do_version(self): return {'version_core': __version__} |