diff options
Diffstat (limited to 'voctogui/lib')
-rw-r--r-- | voctogui/lib/videopreviews.py | 4 |
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() |