diff -r 1ec6fd26f841 -r a748a5d1d7c3 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Sat Feb 17 22:37:35 2018 -0500 +++ b/mercurial/hgweb/webcommands.py Sat Feb 17 22:38:25 2018 -0500 @@ -542,7 +542,7 @@ emptydirs = [] h = dirs[d] while isinstance(h, dict) and len(h) == 1: - k, v = h.items()[0] + k, v = next(iter(h.items())) if v: emptydirs.append(k) h = v