From d2583825d3194560ed52e9769a4aa1b649e9e7fe Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Wed, 15 Aug 2018 16:19:50 +0200 Subject: [PATCH] int on day start --- ffplayout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffplayout.py b/ffplayout.py index 8d83a25f..15f78f50 100755 --- a/ffplayout.py +++ b/ffplayout.py @@ -78,10 +78,10 @@ _pre_comp = SimpleNamespace( _playlist = SimpleNamespace( path=cfg.get('PLAYLIST', 'playlist_path'), - start=cfg.getfloat('PLAYLIST', 'day_start'), + start=cfg.getint('PLAYLIST', 'day_start'), filler=cfg.get('PLAYLIST', 'filler_clip'), blackclip=cfg.get('PLAYLIST', 'blackclip'), - shift=cfg.getint('PLAYLIST', 'time_shift'), + shift=cfg.getfloat('PLAYLIST', 'time_shift'), map_ext=cfg.get('PLAYLIST', 'map_extension') )