Skip to content

Commit 994682a

Browse files
committed
main.py: Fix another derp
Signed-off-by: Hector Martin <[email protected]>
1 parent 14352f8 commit 994682a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ def main_loop(self):
808808
cmd = shlex.join(e.cmd)
809809
p_error("Failed to run process: {cmd}")
810810
if e.output is not None:
811-
p_error("Output: {e.output}")
811+
p_error(f"Output: {e.output}")
812812
logging.exception("Process execution failed")
813813
except:
814814
logging.exception("Exception caught")

0 commit comments

Comments
 (0)