aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-10-17 01:49:10 +0200
committerMarcin Kuzminski <marcin@python-works.com>2011-10-17 01:49:10 +0200
commit39ecb0d3f91be354c5e10e0fd80b1a10f3751cb5 (patch)
tree95e185963a1298d5bb2d361ffc3132ffe66a83da
parentf882d6af5eb1233d54d74d6aa91529603e458a09 (diff)
disabled error messages in get_current_revision for stable branchv1.2.2
-rw-r--r--rhodecode/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index c947b2f8..e9f16cce 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -36,7 +36,7 @@ PLATFORM_OTHERS = ('Linux', 'Darwin', 'FreeBSD', 'OpenBSD', 'SunOS')
try:
from rhodecode.lib import get_current_revision
- _rev = get_current_revision()
+ _rev = get_current_revision(quiet=True)
except ImportError:
#this is needed when doing some setup.py operations
_rev = False