Skip to content

Commit

Permalink
Fix incremental_skip_later bug from #2782
Browse files Browse the repository at this point in the history
  • Loading branch information
msjyoo committed Jan 13, 2018
1 parent 731d80d commit 5f26ec6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions beets/importer.py
Expand Up @@ -577,8 +577,10 @@ def finalize(self, session):
# Update progress.
if session.want_resume:
self.save_progress()
if (session.config['incremental'] and
not session.config['incremental_skip_later']):
if session.config['incremental'] and not (
# Should we skip recording to incremental list?
self.skip and session.config['incremental_skip_later']
):
self.save_history()

self.cleanup(copy=session.config['copy'],
Expand Down

0 comments on commit 5f26ec6

Please sign in to comment.