diff options
author | MaZderMind <git@mazdermind.de> | 2015-10-06 21:09:07 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-10-06 21:09:07 +0200 |
commit | 4f32f46484cb208c9fd3d90bd249b57d649aed06 (patch) | |
tree | 61563a9b4947a63c1fd6d49cd16ef1a1b8d96868 /voctogui | |
parent | 7ed2658beeae352036bc4272bfce980fec51c11b (diff) |
fix wrong size output
Diffstat (limited to 'voctogui')
-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() |