summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/img_display.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/img_display.py b/ranger/ext/img_display.py
index cdb3f3a5..699f04d9 100644
--- a/ranger/ext/img_display.py
+++ b/ranger/ext/img_display.py
@@ -77,7 +77,7 @@ class W3MImageDisplayer(ImageDisplayer):
         cmd = "6;{x};{y};{w};{h}\n4;\n3;\n".format(
                 x = int((start_x - 0.2) * fontw),
                 y = int((start_y + 0.6) * fonth),
-                w = int((width + 0.4)* fontw),
+                w = int((width + 0.4) * fontw),
                 h = int((height - 0.6) * fonth))
 
         self.process.stdin.write(cmd)