##// END OF EJS Templates
fixed a typo on feed url generation
fixed a typo on feed url generation

File last commit:

r198:c0974584 rhodecode-0.0.0.7.0 default
r206:7a6a69f3 default
Show More
__init__.py
13 lines | 316 B | text/x-python | PythonLexer
"""
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]))