Mercurial > public > src > rhodecode
changeset 2696:3a54e1e121d5 beta
fix http NotFound call in pygrack
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Thu, 12 Jul 2012 16:54:46 +0200 |
parents | 16a6a2f5d422 |
children | 6c83dc0226d2 |
files | rhodecode/lib/middleware/pygrack.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/rhodecode/lib/middleware/pygrack.py Wed Jul 11 23:24:38 2012 +0200 +++ b/rhodecode/lib/middleware/pygrack.py Thu Jul 12 16:54:46 2012 +0200 @@ -194,7 +194,7 @@ os.path.join(content_path, '.git'), self.username) else: - return exc.HTTPNotFound()(environ, start_response, self.username) + return exc.HTTPNotFound()(environ, start_response) return app(environ, start_response)