diff options
author | Martin Keßler <martin@moegger.de> | 2016-11-01 15:23:40 +0100 |
---|---|---|
committer | Martin Keßler <martin@moegger.de> | 2016-11-01 15:25:30 +0100 |
commit | 7ac47d6cd98a4f8d2fd124cd391a7b3d2914d5ca (patch) | |
tree | c1c41000556ab79ef8c82af0c48d5f73a941e77f | |
parent | 6459e642807a73d568c42dd4b2dfd0280529d1c7 (diff) |
fixed log message when reading "side-by-side-preview" config
-rw-r--r-- | voctocore/lib/videomix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py index 4ab740f..38432e8 100644 --- a/voctocore/lib/videomix.py +++ b/voctocore/lib/videomix.py @@ -222,14 +222,14 @@ class VideoMix(object): try: apos = [int(i) for i in Config.get('side-by-side-preview', 'apos').split('/', 1)] - self.log.debug('B-Video-Position configured to %u/%u', + self.log.debug('A-Video-Position configured to %u/%u', apos[0], apos[1]) except: apos = [ int(width / 100), # 1% int(width / 100) # 1% ] - self.log.debug('B-Video-Position calculated to %u/%u', + self.log.debug('A-Video-Position calculated to %u/%u', apos[0], apos[1]) try: |