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

Closes #2367: Remove deprecated RPCClient functionality

This commit is contained in:
Jeremy Stretch
2018-08-16 12:21:24 -04:00
parent 7145f86a6e
commit c4be440cd1
9 changed files with 27 additions and 403 deletions

View File

@@ -744,7 +744,7 @@ class PlatformForm(BootstrapMixin, forms.ModelForm):
class Meta:
model = Platform
fields = ['name', 'slug', 'manufacturer', 'napalm_driver', 'napalm_args', 'rpc_client']
fields = ['name', 'slug', 'manufacturer', 'napalm_driver', 'napalm_args']
widgets = {
'napalm_args': SmallTextarea(),
}