我一直在使用这里找到的代码的实现,它在我部署的服务器上运行良好django-admin
。服务器从 django (7cfe8e8fce) 的旧结帐运行。在我的本地机器上,我正在运行当前结帐 (d407164c)。尝试访问该表单时,我收到以下错误和对该return
行的引用:
def _get_empty_form(self, **kwargs):
return super(ParentInstInlineFormSet, self)._get_empty_form(parent_instance=self.instance)
empty_form = property(_get_empty_form)
错误文字:
'super' object has no attribute '_get_empty_form'
Request Method: GET
Request URL: http://localhost:8000/pmc/admin/pmc_log/reportperiod/add/
Django Version: 1.6.dev20121220194515
Exception Type: AttributeError
Exception Value:
'super' object has no attribute '_get_empty_form'
Exception Location: /software/django-pmc-daily-log/src/pmc_log/pmc_log/forms.py in _get_empty_form, line 18
去哪儿了_get_empty_form
?解决这个问题的最佳方法是什么?