mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-18 21:16:27 -06:00
Fixes #744: Fixed export of sites without an AS number
This commit is contained in:
parent
c94d111401
commit
15bec75167
@ -265,7 +265,7 @@ class Site(CreatedUpdatedModel, CustomFieldModel):
|
||||
self.slug,
|
||||
self.tenant.name if self.tenant else '',
|
||||
self.facility,
|
||||
str(self.asn),
|
||||
str(self.asn) if self.asn else '',
|
||||
])
|
||||
|
||||
@property
|
||||
|
Loading…
Reference in New Issue
Block a user