mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-17 06:20:33 +00:00
Added Brazilian Portugese locale. Fixed minor css scoping issue that caused stacked template items that were sortable to not display the 'move' cusor type. Fixed comment line in manage.py for PEP8.
17 lines
393 B
Python
17 lines
393 B
Python
VERSION = (1, 7, 1) # following PEP 386
|
|
DEV_N = None
|
|
|
|
|
|
def get_version():
|
|
version = '{}.{}'.format(VERSION[0], VERSION[1])
|
|
if VERSION[2]:
|
|
version = '{}.{}'.format(version, VERSION[2])
|
|
try:
|
|
if VERSION[3]:
|
|
version = '{}.{}'.format(version, VERSION[3])
|
|
except IndexError:
|
|
pass
|
|
return version
|
|
|
|
|
|
__version__ = get_version()
|