comparison rhodecode/__init__.py @ 1220:208b15340dfa beta

fixes issue #153
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Apr 2011 20:06:28 +0200
parents a671db5bdd58
children 95e6a005630c
comparison
equal deleted inserted replaced
1214:a2dba9356c64 1220:208b15340dfa
30 __dbversion__ = 3 #defines current db version for migrations 30 __dbversion__ = 3 #defines current db version for migrations
31 __platform__ = platform.system() 31 __platform__ = platform.system()
32 __license__ = 'GPLv3' 32 __license__ = 'GPLv3'
33 33
34 PLATFORM_WIN = ('Windows') 34 PLATFORM_WIN = ('Windows')
35 PLATFORM_OTHERS = ('Linux', 'Darwin', 'FreeBSD') 35 PLATFORM_OTHERS = ('Linux', 'Darwin', 'FreeBSD', 'OpenBSD')
36 36
37 try: 37 try:
38 from rhodecode.lib.utils import get_current_revision 38 from rhodecode.lib.utils import get_current_revision
39 _rev = get_current_revision() 39 _rev = get_current_revision()
40 except ImportError: 40 except ImportError: