Browse Source

Added missing CSV header

Jeremy Stretch 7 years ago
parent
commit
a9fefbec5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/tenancy/models.py

+ 1 - 1
netbox/tenancy/models.py

@@ -48,7 +48,7 @@ class Tenant(CreatedUpdatedModel, CustomFieldModel):
     comments = models.TextField(blank=True)
     custom_field_values = GenericRelation(CustomFieldValue, content_type_field='obj_type', object_id_field='obj_id')
 
-    csv_headers = ['name', 'slug', 'group', 'description']
+    csv_headers = ['name', 'slug', 'group', 'description', 'comments']
 
     class Meta:
         ordering = ['group', 'name']