We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django version: 1.6.5 Dojango version: git 2fc8c88
I get the following backtrace when using a formset:
[...]
File "d:\mysite\django\forms\formsets.py", line 292, in is_valid err = self.errors
File "d:\mysite\dojango\forms\formsets.py", line 56, in getattribute return super(BaseFormSet, self).getattribute(anatt)
File "d:\mysite\django\forms\formsets.py", line 267, in errors self.full_clean()
File "d:\mysite\django\forms\formsets.py", line 315, in full_clean self._errors.append(form.errors)
File "d:\mysite\django\forms\forms.py", line 121, in errors self.full_clean()
File "d:\mysite\django\forms\forms.py", line 271, in full_clean if self.empty_permitted and not self.has_changed():
File "d:\mysite\django\forms\forms.py", line 324, in has_changed return bool(self.changed_data)
File "d:\mysite\django\forms\forms.py", line 357, in changed_data if field.widget._has_changed(initial_value, data_value):
File "d:\mysite\dojango\forms\widgets.py", line 243, in _has_changed return super(TimeInput, self)._has_changed(self._format_value(initial), data)
AttributeError: 'super' object has no attribute '_has_changed'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Django version: 1.6.5
Dojango version: git 2fc8c88
I get the following backtrace when using a formset:
[...]
File "d:\mysite\django\forms\formsets.py", line 292, in is_valid
err = self.errors
File "d:\mysite\dojango\forms\formsets.py", line 56, in getattribute
return super(BaseFormSet, self).getattribute(anatt)
File "d:\mysite\django\forms\formsets.py", line 267, in errors
self.full_clean()
File "d:\mysite\django\forms\formsets.py", line 315, in full_clean
self._errors.append(form.errors)
File "d:\mysite\django\forms\forms.py", line 121, in errors
self.full_clean()
File "d:\mysite\django\forms\forms.py", line 271, in full_clean
if self.empty_permitted and not self.has_changed():
File "d:\mysite\django\forms\forms.py", line 324, in has_changed
return bool(self.changed_data)
File "d:\mysite\django\forms\forms.py", line 357, in changed_data
if field.widget._has_changed(initial_value, data_value):
File "d:\mysite\dojango\forms\widgets.py", line 243, in _has_changed
return super(TimeInput, self)._has_changed(self._format_value(initial), data)
AttributeError: 'super' object has no attribute '_has_changed'
The text was updated successfully, but these errors were encountered: