view pylons_app/__init__.py @ 203:be6d8aaddbd1

dirty fix for https working.
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 22 May 2010 22:40:12 +0200
parents c097458480a5
children 8bdec09436cb
line wrap: on
line source

"""
Hg app, a web based mercurial repository managment based on pylons
"""

VERSION = (0, 7, 0, 'beta')

__version__ = '.'.join((str(each) for each in VERSION[:4]))

def get_version():
    """
    Returns shorter version (digit parts only) as string.
    """
    return '.'.join((str(each) for each in VERSION[:3]))