Skip to content

Commit

Permalink
17713 fix underscore in datasource.sync (#17729)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson authored Oct 10, 2024
1 parent e59f776 commit 4e76346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/core/models/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def sync(self):
logger.debug(f"Updated {updated_count} files")

# Bulk delete deleted files
deleted_count, _ = DataFile.objects.filter(pk__in=deleted_file_ids).delete()
deleted_count, __ = DataFile.objects.filter(pk__in=deleted_file_ids).delete()
logger.debug(f"Deleted {deleted_count} files")

# Walk the local replication to find new files
Expand Down

0 comments on commit 4e76346

Please sign in to comment.