# HG changeset patch # User Gregory Szorc # Date 1439088901 25200 # Node ID de7a3893ee65d8bd3436f36db988d1f105410d57 # Parent 241a1324a1807b4176ea4677693c588dd9fe8ead sshpeer: use absolute_import diff -r 241a1324a180 -r de7a3893ee65 mercurial/sshpeer.py --- a/mercurial/sshpeer.py Sat Aug 08 19:54:11 2015 -0700 +++ b/mercurial/sshpeer.py Sat Aug 08 19:55:01 2015 -0700 @@ -5,9 +5,16 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. +from __future__ import absolute_import + import re -from i18n import _ -import util, error, wireproto + +from .i18n import _ +from . import ( + error, + util, + wireproto, +) class remotelock(object): def __init__(self, repo):