# HG changeset patch # User Marcin Kuzminski # Date 2011-10-17 01:49:10 # Node ID 22273bec00ba2fd860c60a9277d3d7229e288e18 # Parent 5498f86ba2175fdf87028d2e83d842ad4a6f59be disabled error messages in get_current_revision for stable branch diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py --- a/rhodecode/__init__.py +++ b/rhodecode/__init__.py @@ -36,7 +36,7 @@ PLATFORM_OTHERS = ('Linux', 'Darwin', 'F 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