comparison rhodecode/__init__.py @ 2273:7b4bd52e38de

typo fix
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 15 May 2012 23:36:02 +0200
parents c9dc3cd9ce14
children edfff9f37916
comparison
equal deleted inserted replaced
2272:a3fc1b09d715 2273:7b4bd52e38de
28 28
29 VERSION = (1, 3, 6) 29 VERSION = (1, 3, 6)
30 30
31 try: 31 try:
32 from rhodecode.lib import get_current_revision 32 from rhodecode.lib import get_current_revision
33 _rev = get_current_revision(quite=True) 33 _rev = get_current_revision(quiet=True)
34 if _rev and len(VERSION) > 3: 34 if _rev and len(VERSION) > 3:
35 VERSION += ('dev%s' % _rev[0],) 35 VERSION += ('dev%s' % _rev[0],)
36 except ImportError: 36 except ImportError:
37 pass 37 pass
38 38