# HG changeset patch # User Steve Losh # Date 1278381367 14400 # Node ID b3dba8dbf9f63a2ad7067d2f171907771e03dda3 # Parent 5c200ed498750c60a8e3eadb63b0f2a96c508d0d contrib/deploy: fix the username setting in the wsgi script diff -r 5c200ed49875 -r b3dba8dbf9f6 contrib/deploy/wsgi.py --- a/contrib/deploy/wsgi.py Mon Jul 05 21:04:53 2010 -0400 +++ b/contrib/deploy/wsgi.py Mon Jul 05 21:56:07 2010 -0400 @@ -17,7 +17,7 @@ from review.web import app _ui = ui.ui() -_ui.setconfig('ui', 'user', ANON_USER) +_ui.setconfig('ui', 'username', ANON_USER) repo = hg.repository(_ui, REPO) app.read_only = READ_ONLY