diff options
author | MaZderMind <git@mazdermind.de> | 2016-11-07 21:28:52 +0100 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2016-11-07 21:28:52 +0100 |
commit | d8f80a7ebbf5a654b8c2591e8240479a4d2797e0 (patch) | |
tree | b4cb3da040871108d80182f88a28ead7c8948d0f /voctocore/lib/videomix.py | |
parent | b61cd88f8085c2154534bf540a50e8e18542a322 (diff) | |
parent | 197e6d8244af1132441f7bba4a904c205a8d4d63 (diff) |
Merge commit '197e6d8244af1132441f7bba4a904c205a8d4d63'
repair missing merge from force-push to github
Diffstat (limited to 'voctocore/lib/videomix.py')
-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: |