summaryrefslogtreecommitdiff
path: root/django/forms/boundfield.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/boundfield.py')
-rw-r--r--django/forms/boundfield.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/django/forms/boundfield.py b/django/forms/boundfield.py
index 54f9e9a64f..2ff8b0ee26 100644
--- a/django/forms/boundfield.py
+++ b/django/forms/boundfield.py
@@ -1,4 +1,3 @@
-import datetime
import re
from django.core.exceptions import ValidationError
@@ -228,13 +227,7 @@ class BoundField:
@cached_property
def initial(self):
- data = self.form.get_initial_for_field(self.field, self.name)
- # If this is an auto-generated default date, nix the microseconds for
- # standardized handling. See #22502.
- if (isinstance(data, (datetime.datetime, datetime.time)) and
- not self.field.widget.supports_microseconds):
- data = data.replace(microsecond=0)
- return data
+ return self.form.get_initial_for_field(self.field, self.name)
def build_widget_attrs(self, attrs, widget=None):
widget = widget or self.field.widget