Mercurial > hg
changeset 28095:7fa139eaebb4
clonebundles: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 09 Feb 2016 17:51:44 -0800 |
parents | 79fc627578ac |
children | 62ef44273678 |
files | hgext/clonebundles.py tests/test-check-py3-compat.t |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/clonebundles.py Tue Feb 09 17:50:45 2016 -0800 +++ b/hgext/clonebundles.py Tue Feb 09 17:51:44 2016 -0800 @@ -162,6 +162,8 @@ Mercurial server when the bundle hosting service fails. """ +from __future__ import absolute_import + from mercurial import ( extensions, wireproto,
--- a/tests/test-check-py3-compat.t Tue Feb 09 17:50:45 2016 -0800 +++ b/tests/test-check-py3-compat.t Tue Feb 09 17:51:44 2016 -0800 @@ -32,7 +32,6 @@ doc/gendoc.py not using absolute_import doc/hgmanpage.py not using absolute_import hgext/__init__.py not using absolute_import - hgext/clonebundles.py not using absolute_import hgext/color.py not using absolute_import hgext/convert/__init__.py not using absolute_import hgext/convert/bzr.py not using absolute_import