changeset 52644 | e627cc25b6f3 |
parent 51859 | f4733654f144 |
--- a/mercurial/hgweb/hgweb_mod.py Sun Jan 05 22:23:31 2025 -0500 +++ b/mercurial/hgweb/hgweb_mod.py Sun Jan 05 22:26:16 2025 -0500 @@ -361,8 +361,7 @@ with self._obtainrepo() as repo: profile = repo.ui.configbool(b'profiling', b'enabled') with profiling.profile(repo.ui, enabled=profile): - for r in self._runwsgi(req, res, repo): - yield r + yield from self._runwsgi(req, res, repo) def _runwsgi(self, req, res, repo): rctx = requestcontext(self, repo, req, res)