Skip to content

Commit

Permalink
Merge pull request #2 from oasys/sn_manuf
Browse files Browse the repository at this point in the history
use manufacturer from configuration for serial numbers
  • Loading branch information
goebelmeier authored Oct 13, 2021
2 parents d665204 + c4a7d16 commit 4911c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox_cisco_support/management/commands/sync_eox_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def handle(self, *args, **kwargs):
i += 1

# Step 2: Get all Serial Numbers for all Devices of that particular manufacturer
serial_numbers = self.get_serial_numbers(kwargs['manufacturer'])
serial_numbers = self.get_serial_numbers(MANUFACTURER)
self.stdout.write(self.style.SUCCESS('Gathering data for these Serial Numbers: ' + ', '.join(serial_numbers)))

i = 1
Expand Down

0 comments on commit 4911c08

Please sign in to comment.