Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Include skipped in count to make it accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
mayhem committed Aug 16, 2023
1 parent 6833a94 commit 9a5b25d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lb_content_resolver/content_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ def scan(self, music_dir):
print(" %5d tracks not changed since last run" % self.not_changed)
print(" %5d tracks added" % self.added)
print(" %5d tracks updated" % self.updated)
print(" %5d tracks skipped" % self.skipped)
print(" %5d tracks could not be read" % self.error)
if self.total != self.not_changed + self.updated + self.added + self.error:
print("And for some reason these numbers don't add up to the total number of tracks. Hmmm.")

def traverse(self, relative_path):
"""
Expand Down

0 comments on commit 9a5b25d

Please sign in to comment.