diff options
author | Marko Kreen | 2010-12-16 13:46:00 +0000 |
---|---|---|
committer | Marko Kreen | 2010-12-16 13:46:00 +0000 |
commit | 8ce05cd2af737450c4d49dd7266bc92e5d191610 (patch) | |
tree | de84a88ff6dc4b9afd38d9f55a3b79b634f6b8c7 /python/qadmin.py | |
parent | 7adf6d71198e2650aad4ab5ac6566da6ae471c5c (diff) |
qaadmin: unquote_literal fix
Diffstat (limited to 'python/qadmin.py')
-rwxr-xr-x | python/qadmin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qadmin.py b/python/qadmin.py index a777a4ca..6b1e80af 100755 --- a/python/qadmin.py +++ b/python/qadmin.py @@ -119,7 +119,7 @@ def unquote_any(typ, s): ps = [skytools.unquote_ident(p) for p in s.split('.')] s = '.'.join(ps) elif typ == 'str' or typ == 'dolq': - s = skytools.unquote_literal(s, stdstr = True) + s = skytools.unquote_literal(s, True) return s def normalize_any(typ, s): |