summaryrefslogtreecommitdiff
path: root/python/qadmin.py
diff options
context:
space:
mode:
authorMarko Kreen2010-12-16 13:46:00 +0000
committerMarko Kreen2010-12-16 13:46:00 +0000
commit8ce05cd2af737450c4d49dd7266bc92e5d191610 (patch)
treede84a88ff6dc4b9afd38d9f55a3b79b634f6b8c7 /python/qadmin.py
parent7adf6d71198e2650aad4ab5ac6566da6ae471c5c (diff)
qaadmin: unquote_literal fix
Diffstat (limited to 'python/qadmin.py')
-rwxr-xr-xpython/qadmin.py2
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):