Mercurial > hg > mercurial-crew
diff mercurial/pushkey.py @ 26553:7b200566e474
pushkey: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 19:57:27 -0700 |
parents | b1d694d3975e |
children |
line wrap: on
line diff
--- a/mercurial/pushkey.py +++ b/mercurial/pushkey.py @@ -5,7 +5,14 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -import bookmarks, phases, obsolete, encoding +from __future__ import absolute_import + +from . import ( + bookmarks, + encoding, + obsolete, + phases, +) def _nslist(repo): n = {}