diff options
author | hut <hut@lavabit.com> | 2011-10-05 19:45:04 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-05 19:45:04 +0200 |
commit | 801dabc8a8a374a361a3db2d739395b000f2fd6e (patch) | |
tree | f7206d9c6f0ff9907b0b4b415ee35b3c8c79da7e | |
parent | 9fc77ba1632b09123816b973e0d48a958a0d4c57 (diff) | |
download | ranger-801dabc8a8a374a361a3db2d739395b000f2fd6e.tar.gz |
core.runner: print more debug output
-rw-r--r-- | ranger/core/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/runner.py b/ranger/core/runner.py index ad4ca558..d9f9083b 100644 --- a/ranger/core/runner.py +++ b/ranger/core/runner.py @@ -197,7 +197,7 @@ class Runner(object): try: process = Popen(**popen_kws) except Exception as e: - self._log("Failed to run: " + str(action)) + self._log("Failed to run: %s\n%s" % (str(action), str(e))) else: if context.wait: process.wait() |