mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #712: Corrected export of tenants which are not assigned to a group
This commit is contained in:
@@ -48,6 +48,6 @@ class Tenant(CreatedUpdatedModel, CustomFieldModel):
|
||||
return ','.join([
|
||||
self.name,
|
||||
self.slug,
|
||||
self.group.name,
|
||||
self.group.name if self.group else '',
|
||||
self.description,
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user