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

#353: Allow bulk editing of interfaces

This commit is contained in:
Jeremy Stretch
2016-10-14 16:38:46 -04:00
parent 5a4ccbc066
commit 0da3661ff0
7 changed files with 65 additions and 16 deletions

View File

@ -34,7 +34,7 @@ def add_blank_choice(choices):
"""
Add a blank choice to the beginning of a choices list.
"""
return ((None, '---------'),) + choices
return ((None, '---------'),) + tuple(choices)
#