# HG changeset patch # User Marcin Kuzminski # Date 2013-01-26 21:15:40 # Node ID b5a5a60608a76b74789972a4d4cd27a97e6efdf4 # Parent bda2bd2558b175a50f73d8c9c2c7233cb117c82c be blunt about that error message to not confuse people diff --git a/rhodecode/lib/__init__.py b/rhodecode/lib/__init__.py --- a/rhodecode/lib/__init__.py +++ b/rhodecode/lib/__init__.py @@ -19,6 +19,7 @@ def get_current_revision(quiet=False): return (tip.revision, tip.short_id) except Exception, err: if not quiet: - print ("Cannot retrieve rhodecode's revision. Original error " - "was: %s" % err) + print ("WARNING: Cannot retrieve rhodecode's revision. " + "disregard this if you don't know what that means. " + "Original error was: %s" % err) return None