diff options
author | Ben Hilburn <ben.hilburn@ettus.com> | 2016-10-14 14:21:07 -0400 |
---|---|---|
committer | Ben Hilburn <ben.hilburn@ettus.com> | 2016-10-17 17:07:23 -0400 |
commit | bc4e0b3ba71250d92a7f45a036bcae7f5589e1a6 (patch) | |
tree | e2c7aee9699b8d87b5d9ee3b6d04ed7321e48484 /grc/gui/Executor.py | |
parent | 1624da7772f1ff57232e2f2024281547d483629c (diff) |
Backport GRC Python code for Python-2.6.6+
Diffstat (limited to 'grc/gui/Executor.py')
-rw-r--r-- | grc/gui/Executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Executor.py b/grc/gui/Executor.py index bf9eecb9a8..f91a341541 100644 --- a/grc/gui/Executor.py +++ b/grc/gui/Executor.py @@ -65,7 +65,7 @@ class ExecFlowGraphThread(threading.Thread): filename=shlex_quote(generator.file_path)) run_command_args = shlex.split(run_command) except Exception as e: - raise ValueError("Can't parse run command {!r}: {}".format(run_command, e)) + raise ValueError("Can't parse run command {!r}: {0}".format(run_command, e)) # When in no gui mode on linux, use a graphical terminal (looks nice) xterm_executable = find_executable(self.xterm_executable) |