view pylons_app/__init__.py @ 202:3fd2af1ba5ea

updated logging in logout. Added before, on login page.
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 22 May 2010 20:51:54 +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]))