Skip to content

Commit

Permalink
Merge pull request #222 from dagwieers/fix
Browse files Browse the repository at this point in the history
Small fix
  • Loading branch information
dagwieers authored Oct 15, 2020
2 parents fd9d9f0 + 0e24754 commit c4618fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/lib/stillwatching.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def onInit(self): # pylint: disable=invalid-name
self.prepare_progress_control()

def set_info(self):
episode_info = '{season:0d}x{episode:0d}.'.format(**self.item)
episode_info = '{season}x{episode}.'.format(**self.item)
if self.item.get('rating') is None:
rating = ''
else:
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/upnext.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def onInit(self): # pylint: disable=invalid-name
self.getControl(3013).setLabel(localize(30034)) # Close

def set_info(self):
episode_info = '{season:0d}x{episode:0d}.'.format(**self.item)
episode_info = '{season}x{episode}.'.format(**self.item)
if self.item.get('rating') is None:
rating = ''
else:
Expand Down

0 comments on commit c4618fb

Please sign in to comment.