summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-12-07 12:29:27 +0100
committerAnton Khirnov <anton@khirnov.net>2021-12-07 12:29:27 +0100
commit595d1b42514dfe7b006b01035be1142679a2f48c (patch)
treef88042de6f8a38587a2d80b4410f1325aa500608
parent49f6a24c43298b904cd38782a228928648e8e43f (diff)
bin/zathura_wrapper: add newline to stderr output
-rwxr-xr-xbin/zathura_wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/zathura_wrapper b/bin/zathura_wrapper
index 0129df3..d007510 100755
--- a/bin/zathura_wrapper
+++ b/bin/zathura_wrapper
@@ -24,7 +24,7 @@ with contextlib.ExitStack() as stack:
shutil.copyfileobj(resp, tf)
args[-1] = tf.name
except urllib.error.URLError as e:
- sys.stderr.write('Error downloading the URL "%s" to a temporary file', str(e))
+ sys.stderr.write('Error downloading the URL "%s" to a temporary file\n', str(e))
sys.exit(1)
args[0] = '/usr/bin/zathura'