From 64e7516c91d9f2f7ca86928f8db00ca29f3eb544 Mon Sep 17 00:00:00 2001 From: Jonathan Herman Date: Wed, 19 Dec 2012 14:10:55 -0500 Subject: Bug fix --- run/executable/executable.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'run/executable/executable.py') diff --git a/run/executable/executable.py b/run/executable/executable.py index 628f711..bc8edd7 100644 --- a/run/executable/executable.py +++ b/run/executable/executable.py @@ -16,7 +16,7 @@ class Executable(object): if extra_args is None: self.extra_args = None else: - self.extra_args = list(extra_args) # make a duplicate + self.extra_args = [str(a) for a in list(extra_args)] # make a duplicate if not is_executable(self.exec_file): raise Exception("Not executable ? : %s" % self.exec_file) @@ -44,6 +44,7 @@ class Executable(object): return full_command def __str__(self): + print("Full command: %s" % self.__get_full_command()) return " ".join(self.__get_full_command()) def execute(self): -- cgit v1.2.2