diff rhodecode/__init__.py @ 710:e2f3c8e6939d beta

Disable git support due to large problems with dulwich. Added one point of controll over supported backends in rhodecode.BACKENDS
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 18 Nov 2010 02:41:38 +0100
parents 05528ad948c4
children e8c9ff1da9ba
line wrap: on
line diff
--- a/rhodecode/__init__.py	Thu Nov 18 02:25:12 2010 +0100
+++ b/rhodecode/__init__.py	Thu Nov 18 02:41:38 2010 +0100
@@ -33,3 +33,8 @@
     Returns shorter version (digit parts only) as string.
     """
     return '.'.join((str(each) for each in VERSION[:3]))
+
+BACKENDS = {
+    'hg': 'Mercurial repository',
+   #'git': 'Git repository',
+}