diff options
Diffstat (limited to 'experiment/executable/executable.py')
| -rw-r--r-- | experiment/executable/executable.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/experiment/executable/executable.py b/experiment/executable/executable.py index 6697a8d..897c2d9 100644 --- a/experiment/executable/executable.py +++ b/experiment/executable/executable.py | |||
| @@ -43,6 +43,9 @@ class Executable(object): | |||
| 43 | full_command += self.extra_args | 43 | full_command += self.extra_args |
| 44 | return full_command | 44 | return full_command |
| 45 | 45 | ||
| 46 | def __str__(self): | ||
| 47 | return " ".join(self.__get_full_command()) | ||
| 48 | |||
| 46 | def execute(self): | 49 | def execute(self): |
| 47 | """Execute the binary.""" | 50 | """Execute the binary.""" |
| 48 | full_command = self.__get_full_command() | 51 | full_command = self.__get_full_command() |
