1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Corrected Prefix CSV formatting

This commit is contained in:
Jeremy Stretch
2016-06-16 14:19:20 -04:00
parent 4895ae13a7
commit 15938ff98f

View File

@ -240,7 +240,7 @@ class Prefix(models.Model):
return ','.join([
str(self.prefix),
self.vrf.rd if self.vrf else '',
self.site.name,
self.site.name if self.site else '',
self.get_status_display(),
self.role.name if self.role else '',
self.description,