From 1bf2913089054a994c1beb9b91723b1e93ace682 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 13 Apr 2008 17:34:47 +0100 Subject: [PATCH] Fixed argument expansion for quoted arguments. --- roxshell/line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roxshell/line.py b/roxshell/line.py index ccb2da8..74a0c76 100644 --- a/roxshell/line.py +++ b/roxshell/line.py @@ -72,7 +72,7 @@ class Quote(Value): raise CantHandle def expand_to_argv(self): - return self.parsed + return [self.parsed] class SelectedFiles(Value): abs_path = None # GFile for the directory containing the files -- 2.11.4.GIT