view pylons_app/__init__.py @ 217:3a1b921ce51c

html code cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 24 May 2010 22:25:08 +0200
parents a3a7c3e03b76
children 58b46f9194c3
line wrap: on
line source

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

VERSION = (0, 7, 3, '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]))