# HG changeset patch # User Siddharth Agarwal # Date 1451593997 28800 # Node ID 1c659ba24981fe6f45e6ef5399af5df5d1030209 # Parent 1b8d70c2bbfa241617774efcbefe15fa4d66f86d hgrepo: regularize mercurial imports diff -r 1b8d70c2bbfa -r 1c659ba24981 hggit/hgrepo.py --- a/hggit/hgrepo.py Thu Dec 31 12:27:07 2015 -0800 +++ b/hggit/hgrepo.py Thu Dec 31 12:33:17 2015 -0800 @@ -1,6 +1,8 @@ -from mercurial import localrepo +from mercurial import ( + util as hgutil, + localrepo, +) from mercurial.node import bin -from mercurial import util as hgutil from git_handler import GitHandler from gitrepo import gitrepo