hgext/convert/common.py
changeset 28410 48b04018c897
parent 26587 56b2bcea2529
child 28670 ff0d3b6b287f
--- 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