summaryrefslogtreecommitdiff
path: root/src/services/vyos-http-api-server
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@sentrium.io>2019-12-03 11:26:12 -0600
committerGitHub <noreply@github.com>2019-12-03 11:26:12 -0600
commit3ea9bcedd56b898005ce9c69148347a73f0d5d7e (patch)
treeda670c6d31d9cef41de2fb21d460e5818cbfd574 /src/services/vyos-http-api-server
parent41212805fa9db0db590b8207372a3d2ec7382fef (diff)
parent145b937d3d8e3734d987b5486fe861f660c6e79b (diff)
downloadvyos-1x-3ea9bcedd56b898005ce9c69148347a73f0d5d7e.tar.gz
vyos-1x-3ea9bcedd56b898005ce9c69148347a73f0d5d7e.zip
Merge pull request #170 from jestabro/T1801
T1801: move escaping of backslashes into configtree
Diffstat (limited to 'src/services/vyos-http-api-server')
-rwxr-xr-xsrc/services/vyos-http-api-server2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/services/vyos-http-api-server b/src/services/vyos-http-api-server
index 9b6d7e979..1abaed873 100755
--- a/src/services/vyos-http-api-server
+++ b/src/services/vyos-http-api-server
@@ -24,7 +24,6 @@ import traceback
import threading
import vyos.config
-import vyos.util
import bottle
@@ -213,7 +212,6 @@ def get_value():
config_format = command['configFormat']
res = session.show_config(path=command['path'])
- res = vyos.util.escape_backslash(res)
if config_format == 'json':
config_tree = vyos.configtree.ConfigTree(res)
res = json.loads(config_tree.to_json())