diff mercurial/pure/base85.py @ 27334:9007f697e8ef

base85: use absolute_import
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 12 Dec 2015 13:33:47 -0500
parents 20a9d823f242
children 01b4d88ccb24
line wrap: on
line diff
--- a/mercurial/pure/base85.py	Sat Dec 12 13:32:25 2015 -0500
+++ b/mercurial/pure/base85.py	Sat Dec 12 13:33:47 2015 -0500
@@ -5,6 +5,8 @@
 # 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 struct
 
 _b85chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" \