[Bugfix] Fix a method call in TimezoneField

It wasn’t a method call, but it should have been.
This commit is contained in:
Gergely Polonkai 2018-07-03 08:29:57 +02:00
parent 8a46f3c66a
commit 894024aa88
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class TimezoneField(SelectField):
return
if is_pytz_instance(value):
if self.is_pytz_instance(value):
self.data = value
return