changeset 2273:7b4bd52e38de

typo fix
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 15 May 2012 23:36:02 +0200
parents a3fc1b09d715
children 058fc80b052e
files rhodecode/__init__.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/__init__.py	Tue May 15 23:32:01 2012 +0200
+++ b/rhodecode/__init__.py	Tue May 15 23:36:02 2012 +0200
@@ -30,7 +30,7 @@
 
 try:
     from rhodecode.lib import get_current_revision
-    _rev = get_current_revision(quite=True)
+    _rev = get_current_revision(quiet=True)
     if _rev and len(VERSION) > 3:
         VERSION += ('dev%s' % _rev[0],)
 except ImportError: