From f6993de0b1cede7d19438928e1a4c008afdf3026 Mon Sep 17 00:00:00 2001 From: James Meyer Date: Sun, 4 Oct 2009 12:46:42 -0500 Subject: bld: remove space between dir and cmd when launching a terminal. this allows terminal --default-working-directory= to work --- build_tools/bin/bld_resource.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build_tools/bin/bld_resource.py b/build_tools/bin/bld_resource.py index aaba889..0fa8309 100644 --- a/build_tools/bin/bld_resource.py +++ b/build_tools/bin/bld_resource.py @@ -1924,7 +1924,9 @@ class Ui_MainWindow(object): dir_list = self.find_pkgdir_ABS() for item,dir in dir_list: cmd = "%s" %(self.all_settings['konsole']) - cmd = cmd + " " + " " + dir + + cmd += dir + print cmd cmd = cmd, thread.start_new_thread(self.runcmd_thread, cmd) @@ -2045,7 +2047,7 @@ class Ui_MainWindow(object): dir_list = self.find_pkgdir() for item,dir in dir_list: cmd = "%s" %(self.all_settings['konsole']) - cmd = cmd + " " + " " + dir + cmd += dir cmd = cmd, thread.start_new_thread(self.runcmd_thread, cmd) -- cgit v0.12