From 358aaa135f9767463ec6780e6c6f065fc45518ad Mon Sep 17 00:00:00 2001 From: "christian.plesner.hansen@gmail.com" Date: Fri, 27 Mar 2009 03:22:06 +0000 Subject: [PATCH] Fixed special command problem I just introduced. Guess I should have waited for review eh. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1624 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test.py b/tools/test.py index 7aa5385e75..f6f9a374ff 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1174,6 +1174,7 @@ def GetSpecialCommandProcessor(value): return ExpandCommand else: pos = value.find('@') + import urlllib prefix = urllib.unquote(value[:pos]).split() suffix = urllib.unquote(value[pos+1:]).split() def ExpandCommand(args):