Files @ c8162373f214
Branch filter:

Location: kallithea/pylons_app/__init__.py

Marcin Kuzminski
Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
"""
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]))