Files @ 3d1dd13887f9
Branch filter:

Location: kallithea/pylons_app/__init__.py

Marcin Kuzminski
invalidate the repo list also for online changes. Small fixes in LoginRequired decorator.
Cleaned hgwebdir config.
"""
Hg app, a web based mercurial repository managment based on pylons
"""

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