Skip to content

Commit

Permalink
Version 2.0.1
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
Cigaras committed Mar 1, 2017
1 parent 9547878 commit acd4c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Contents/Code/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def MainMenu():
if not Dict['groups']:
LoadPlaylist()
if not Dict['groups']:
return ObjectContainer(header = "Error", message = "Provided playlist files are invalid, missing or epmty, check the log file for more information")
return ObjectContainer(header = "Error", message = "Provided playlist files are invalid, missing or empty, check the log file for more information")

groups = Dict['groups']
groups_list = groups.values()
Expand Down Expand Up @@ -98,7 +98,7 @@ def ListItems(group, page = 1):
if not Dict['streams']:
LoadPlaylist()
if not Dict['streams']:
return ObjectContainer(header = "Error", message = "Provided playlist files are invalid, missing or epmty, check the log file for more information")
return ObjectContainer(header = "Error", message = "Provided playlist files are invalid, missing or empty, check the log file for more information")

streams = Dict['streams']
items_list = streams.get(group, dict()).values()
Expand Down

0 comments on commit acd4c54

Please sign in to comment.