Mercurial > public > mercurial-scm > hg
diff hgext/convert/common.py @ 28410:48b04018c897
convert: common use absolute_import
author | timeless <timeless@mozdev.org> |
---|---|
date | Wed, 02 Mar 2016 16:26:35 +0000 |
parents | 56b2bcea2529 |
children | ff0d3b6b287f |
line wrap: on
line diff
--- a/hgext/convert/common.py Wed Mar 02 16:23:28 2016 +0000 +++ b/hgext/convert/common.py Wed Mar 02 16:26:35 2016 +0000 @@ -4,10 +4,21 @@ # # 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 base64, errno, subprocess, os, datetime, re +import base64 import cPickle as pickle -from mercurial import phases, util, error +import datetime +import errno +import os +import re +import subprocess + +from mercurial import ( + error, + phases, + util, +) from mercurial.i18n import _ propertycache = util.propertycache