summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLitao Gao <litao.gao@windriver.com>2017-02-28 03:48:55 -0500
committerLitao Gao <litao.gao@windriver.com>2017-02-28 03:50:17 -0500
commit23314e1adcde103d19c22d36f37aa75aa712d67f (patch)
treef98691c49f40141a21286899065e39eaa063e883
parent7b7c3c1e1e24b5419e6c607b2bfa14d89e94ae70 (diff)
Populate the 'reverse' parameter to replace_a_key
Change-Id: Id0313c385b9e6e974abb23abef4191ede32d57ad Issue-Id: MULTIVIM-47 Signed-off-by: Litao Gao <litao.gao@windriver.com>''
-rw-r--r--newton/newton/requests/views/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newton/newton/requests/views/util.py b/newton/newton/requests/views/util.py
index 10a6389b..089a0e1f 100644
--- a/newton/newton/requests/views/util.py
+++ b/newton/newton/requests/views/util.py
@@ -73,4 +73,4 @@ class VimDriverUtils(object):
@staticmethod
def replace_key_by_mapping(dict_obj, mapping, reverse=False):
for k in mapping:
- VimDriverUtils.replace_a_key(dict_obj, k)
+ VimDriverUtils.replace_a_key(dict_obj, k, reverse)