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

Commit

Permalink
Fix cleanup message: --delete doesn't exist -> --remove
Browse files Browse the repository at this point in the history
  • Loading branch information
zas committed Jan 11, 2024
1 parent ef3d67e commit 02e5144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lb_content_resolver/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def database_cleanup(self, dry_run):
db.execute_sql("""DELETE FROM recording WHERE recording.id IN (%s)""" % placeholders, tuple(recording_ids))
print("Stale references removed")
else:
print("--delete not specified, no refences removed")
print("--remove not specified, no references removed")

def metadata_sanity_check(self, include_subsonic=False):
"""
Expand Down

0 comments on commit 02e5144

Please sign in to comment.