# HG changeset patch # User Siddharth Agarwal # Date 1451594069 28800 # Node ID a539321562ef5ea9638bdafbf64e7a096000a965 # Parent 1c659ba24981fe6f45e6ef5399af5df5d1030209 ssh: regularize mercurial imports diff --git a/hggit/_ssh.py b/hggit/_ssh.py --- a/hggit/_ssh.py +++ b/hggit/_ssh.py @@ -1,7 +1,10 @@ from dulwich.client import SubprocessWrapper -from mercurial import util import subprocess +from mercurial import ( + util, +) + class SSHVendor(object): """Parent class for ui-linked Vendor classes."""