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

Commit

Permalink
Added sorting for results
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hoad committed May 6, 2011
1 parent d28305e commit 0126a68
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ def show_movie_submenu():
if not library_files.issuperset(movie_files):
print "%s contains missing movies!" % movie_path
print "missing movies: %s" % list(movie_files.difference(library_files))
missing.extend(list(movie_files.difference(library_files)))
l = list(movie_files.difference(library_files))
l.sort()
missing.extend(l)

f = None

Expand Down Expand Up @@ -294,7 +296,9 @@ def show_tvshow_submenu():

if not library_files.issuperset(tv_files):
print "%s contains missing TV shows!" % tv_path
missing.extend(list(tv_files.difference(library_files)))
l = list(tv_files.difference(library_files))
l.sort()
missing.extend(l)

f = None

Expand Down

0 comments on commit 0126a68

Please sign in to comment.