aboutsummaryrefslogtreecommitdiff
path: root/voctogui/lib
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2015-10-06 21:09:07 +0200
committerMaZderMind <git@mazdermind.de>2015-10-06 21:09:07 +0200
commit4f32f46484cb208c9fd3d90bd249b57d649aed06 (patch)
tree61563a9b4947a63c1fd6d49cd16ef1a1b8d96868 /voctogui/lib
parent7ed2658beeae352036bc4272bfce980fec51c11b (diff)
fix wrong size output
Diffstat (limited to 'voctogui/lib')
-rw-r--r--voctogui/lib/videopreviews.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/voctogui/lib/videopreviews.py b/voctogui/lib/videopreviews.py
index 7be34da..233b132 100644
--- a/voctogui/lib/videopreviews.py
+++ b/voctogui/lib/videopreviews.py
@@ -29,10 +29,10 @@ class VideoPreviewsController(object):
try:
height = Config.getint('previews', 'height')
- self.log.debug('Preview-Height configured to %u', width)
+ self.log.debug('Preview-Height configured to %u', height)
except:
height = width*9/16
- self.log.debug('Preview-Height calculated to %u', width)
+ self.log.debug('Preview-Height calculated to %u', height)
# Accelerators
accelerators = Gtk.AccelGroup()