From 76e725d7777f4a94f1cf7827eb5240add89a21ec Mon Sep 17 00:00:00 2001 From: "christian.plesner.hansen@gmail.com" Date: Fri, 27 Mar 2009 03:13:46 +0000 Subject: [PATCH] Added url decoding of special commands. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1623 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test.py b/tools/test.py index 848b01753d..7aa5385e75 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1174,8 +1174,8 @@ def GetSpecialCommandProcessor(value): return ExpandCommand else: pos = value.find('@') - prefix = value[:pos].split() - suffix = value[pos+1:].split() + prefix = urllib.unquote(value[:pos]).split() + suffix = urllib.unquote(value[pos+1:]).split() def ExpandCommand(args): return prefix + args + suffix return ExpandCommand