Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
More syntax errors. The horror, the tedious horror!
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hoad committed Apr 11, 2011
1 parent fe32127 commit 9583d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def show_movie_submenu():

now = datetime.datetime.now()

f.write('search results for missing movies using the missing movies plugin: ', now.strftime('%Y-%m-%d %H:%M'))
f.write('%s: search results for missing movies using the missing movies plugin:' % now.strftime('%Y-%m-%d %H:%M'))

for movie_file in missing:
# get the end of the filename without the extension
Expand Down Expand Up @@ -301,7 +301,7 @@ def show_tvshow_submenu():

now = datetime.datetime.now()

f.write('search results for missing tv shows using the missing movies plugin: ', now.strftime('%Y-%m-%d %H:%M'))
f.write('%s: search results for missing tv shows using the missing movies plugin:' % now.strftime('%Y-%m-%d %H:%M'))

for tv_file in missing:
addDirectoryItem(tv_file, isFolder=False)
Expand Down

0 comments on commit 9583d38

Please sign in to comment.