Fix some tuples

This commit is contained in:
Claus Vium 2019-02-02 18:28:50 +01:00
parent 233192863a
commit fd9cde6008
3 changed files with 3 additions and 3 deletions

View file

@ -250,7 +250,7 @@ class Views(object):
if view['Media'] in ('movies', 'tvshows', 'musicvideos'):
self.add_playlist(playlist_path, view)
if view['Media'] not in ('music'):
if view['Media'] not in ('music',):
self.add_nodes(node_path, view)
index += 1