mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-09 08:10:58 +00:00
When Django was parsing the separator attribute, it was comming with 'u' char from unicode. So the trick was to put the value in a String. Solved https://github.com/applegrew/django-select2/issues/238 Closes #268
12 lines
258 B
Python
12 lines
258 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
This is a Django_ integration of Select2_.
|
|
|
|
The app includes Select2 driven Django Widgets and Form Fields.
|
|
|
|
.. _Django: https://www.djangoproject.com/
|
|
.. _Select2: http://ivaynberg.github.com/select2/
|
|
|
|
"""
|
|
|
|
__version__ = "5.8.4"
|