Browse Source

fix version definition

master
j 7 years ago
parent
commit
052fa9f4cb
  1. 5
      content_plugins/__init__.py

5
content_plugins/__init__.py

@ -1,8 +1,7 @@
from django.conf import settings from django.conf import settings
__version__ = '0.2.0'
VERSION = (0, 2, 0) VERSION = tuple(int(d) for d in __version__.split('.'))
__version__ = '.'.join(map(str, VERSION))
USE_TRANSLATABLE_FIELDS = ( USE_TRANSLATABLE_FIELDS = (

Loading…
Cancel
Save