int on day start

This commit is contained in:
jb-alvarado 2018-08-15 16:19:50 +02:00
parent 0e71a90ad7
commit d2583825d3

View File

@ -78,10 +78,10 @@ _pre_comp = SimpleNamespace(
_playlist = SimpleNamespace( _playlist = SimpleNamespace(
path=cfg.get('PLAYLIST', 'playlist_path'), path=cfg.get('PLAYLIST', 'playlist_path'),
start=cfg.getfloat('PLAYLIST', 'day_start'), start=cfg.getint('PLAYLIST', 'day_start'),
filler=cfg.get('PLAYLIST', 'filler_clip'), filler=cfg.get('PLAYLIST', 'filler_clip'),
blackclip=cfg.get('PLAYLIST', 'blackclip'), blackclip=cfg.get('PLAYLIST', 'blackclip'),
shift=cfg.getint('PLAYLIST', 'time_shift'), shift=cfg.getfloat('PLAYLIST', 'time_shift'),
map_ext=cfg.get('PLAYLIST', 'map_extension') map_ext=cfg.get('PLAYLIST', 'map_extension')
) )