Skip to content

Commit

Permalink
Fixes #3463: Correct CSV headers for exported power feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Oct 9, 2019
1 parent 99f7cfc commit 6cdeb0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v2.6.6 (FUTURE)

## Bug Fixes

* [#3463](https://github.com/netbox-community/netbox/issues/3463) - Correct CSV headers for exported power feeds
* [#3571](https://github.com/netbox-community/netbox/issues/3571) - Prevent erroneous redirects when editing tags
* [#3573](https://github.com/netbox-community/netbox/issues/3573) - Ensure consistent display of changelog retention period
* [#3574](https://github.com/netbox-community/netbox/issues/3574) - Change `device` to `parent` in interface editing VLAN filtering logic
Expand Down
1 change: 1 addition & 0 deletions netbox/dcim/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3108,6 +3108,7 @@ def get_absolute_url(self):

def to_csv(self):
return (
self.power_panel.site.name,
self.power_panel.name,
self.rack.name if self.rack else None,
self.name,
Expand Down

0 comments on commit 6cdeb0e

Please sign in to comment.