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

Fixes #454: Correct typecasting on rack export

This commit is contained in:
Jeremy Stretch
2016-08-10 22:27:27 -04:00
parent 74528c6036
commit 098ff961e3

View File

@@ -373,7 +373,7 @@ class Rack(CreatedUpdatedModel):
self.tenant.name if self.tenant else '',
self.role.name if self.role else '',
self.get_type_display() if self.type else '',
self.width,
str(self.width),
str(self.u_height),
])