From 9f7bbfe07d402623b0a9d2b4092982cb534858cd Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Mon, 28 Jan 2008 23:28:31 +0000 Subject: [PATCH] Fix -e to pass an array not a string --- terminator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator b/terminator index 41de10cd..d187b28b 100755 --- a/terminator +++ b/terminator @@ -170,7 +170,7 @@ class TerminatorTerm: login = self.gconf_client.get_bool (self.profile + "/login_shell") or False if self.command: - args = self.command + args = [self.command] shell = self.command elif self.gconf_client.get_bool (self.profile + "/use_custom_command") == True: args = self.gconf_client.get_string (self.profile + "/custom_command").split ()