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

Commit

Permalink
Another silly syntax error!
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hoad committed Apr 11, 2011
1 parent 8471ad3 commit 4fbeeda
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 @@ -251,7 +251,7 @@ def show_movie_submenu():
print "missing movies: %s" % list(movie_files.difference(library_files))
missing.extend(list(movie_files.difference(library_files)))

f = open(OUTPUT_FILE, 'a'):
f = open(OUTPUT_FILE, 'a')
now = datetime.datetime.now()

f.write('search results for missing movies using the missing movies plugin: ', now.strftime('%Y-%m-%d %H:%M'))
Expand Down Expand Up @@ -286,7 +286,7 @@ def show_tvshow_submenu():
print "%s contains missing TV shows!" % tv_path
missing.extend(list(tv_files.difference(library_files)))

f = open(OUTPUT_FILE, 'w'):
f = open(OUTPUT_FILE, 'w')
now = datetime.datetime.now()

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

0 comments on commit 4fbeeda

Please sign in to comment.