qaadmin: unquote_literal fix
authorMarko Kreen <markokr@gmail.com>
Thu, 16 Dec 2010 13:46:00 +0000 (15:46 +0200)
committerMarko Kreen <markokr@gmail.com>
Thu, 16 Dec 2010 13:46:00 +0000 (15:46 +0200)
python/qadmin.py

index a777a4ca464e6eed64c9fcd48bf69eae9d6282de..6b1e80af95d53cd2c6ce57ee041b7096755e2a19 100755 (executable)
@@ -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):