Просмотр исходного кода

Fix RelatedObjectDoesNotExist when adding a new PowerFeed

Jeremy Stretch 6 лет назад
Родитель
Сommit
f342a37362
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      netbox/dcim/forms.py

+ 1 - 1
netbox/dcim/forms.py

@@ -3485,7 +3485,7 @@ class PowerFeedForm(BootstrapMixin, CustomFieldForm):
         super().__init__(*args, **kwargs)
 
         # Initialize site field
-        if self.instance and self.instance.power_panel:
+        if self.instance and hasattr(self.instance, 'power_panel'):
             self.initial['site'] = self.instance.power_panel.site