changeset 8158:6e96ade2402e

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.)
author Mads Kiilerich <mads@kiilerich.com>
date Tue, 04 Feb 2020 03:03:08 +0100
parents 56de50d57ff0
children a8c8b32aee5a
files kallithea/lib/vcs/backends/hg/repository.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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