web/lib/django/__init__.py
changeset 29 cc9b7e14412b
parent 0 0d40e90630ef
equal deleted inserted replaced
28:b758351d191f 29:cc9b7e14412b
     1 VERSION = (1, 1, 1, 'final', 0)
     1 VERSION = (1, 2, 0, 'rc', 1)
     2 
     2 
     3 def get_version():
     3 def get_version():
     4     version = '%s.%s' % (VERSION[0], VERSION[1])
     4     version = '%s.%s' % (VERSION[0], VERSION[1])
     5     if VERSION[2]:
     5     if VERSION[2]:
     6         version = '%s.%s' % (version, VERSION[2])
     6         version = '%s.%s' % (version, VERSION[2])