# HG changeset patch # User Mads Kiilerich # Date 1580781788 -3600 # Node ID 6e96ade2402e31cd92bbe1962fae2df05a2f8073 # Parent 56de50d57ff0145f30d8809b85105108a6a35a75 vcs: fix missing import of mercurial.localrepo (localrepo might already always be available in the mercurial namespace due to side effects from other imports, but it is still better to do it explicit ... and also to please pytype.) diff -r 56de50d57ff0 -r 6e96ade2402e kallithea/lib/vcs/backends/hg/repository.py --- a/kallithea/lib/vcs/backends/hg/repository.py Tue Feb 04 20:08:41 2020 +0100 +++ b/kallithea/lib/vcs/backends/hg/repository.py Tue Feb 04 03:03:08 2020 +0100 @@ -23,6 +23,7 @@ import mercurial.hg import mercurial.hgweb import mercurial.httppeer +import mercurial.localrepo import mercurial.match import mercurial.mdiff import mercurial.node