view pylons_app/__init__.py @ 237:f188b156603d

Added flash messages support
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 30 May 2010 17:52:20 +0200
parents 710e7a75bb6b
children ca80f8c00562
line wrap: on
line source

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

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