From 4f32f46484cb208c9fd3d90bd249b57d649aed06 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Tue, 6 Oct 2015 21:09:07 +0200 Subject: fix wrong size output --- voctogui/lib/videopreviews.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'voctogui/lib/videopreviews.py') 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() -- cgit v1.2.3