fixing style issue

This commit is contained in:
Matthew Blythe 2015-07-28 20:04:49 -06:00
parent 9b05401457
commit 05da49fa6a

View file

@ -1408,7 +1408,7 @@ def group_albums(session):
if task.skip:
continue
tasks = []
for _, items in itertools.groupby(sorted(task.items,key=group), group):
for _, items in itertools.groupby(sorted(task.items, key=group), group):
items = list(items)
task = ImportTask(task.toppath, [i.path for i in items],
items)