VeryApt / django-phone-field

Lightweight model and form field for phone numbers in Django
GNU General Public License v3.0
52 stars 13 forks source link

Django 2.1rc test fixes #3

Closed ddurdik closed 6 years ago

ddurdik commented 6 years ago

Found the root issue: <input> tags are not self-closing in Django 2.1. I did a small refactor so that I wouldn't have to repeat the if DJANGO_VERSION >= (2, 1) check. Tests continue to pass in Django 2.0

va-andrew commented 6 years ago

Great, thanks for the refactor!