diff options
author | Litao Gao <litao.gao@windriver.com> | 2017-02-28 03:48:55 -0500 |
---|---|---|
committer | Litao Gao <litao.gao@windriver.com> | 2017-02-28 03:50:17 -0500 |
commit | 23314e1adcde103d19c22d36f37aa75aa712d67f (patch) | |
tree | f98691c49f40141a21286899065e39eaa063e883 /newton | |
parent | 7b7c3c1e1e24b5419e6c607b2bfa14d89e94ae70 (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>''
Diffstat (limited to 'newton')
-rw-r--r-- | newton/newton/requests/views/util.py | 2 |
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) |