Mercurial > hg-stable
changeset 25983:1245049da5f3
templatefilters: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 20:08:52 -0700 |
parents | b2f3f185e458 |
children | c57509e88922 |
files | mercurial/templatefilters.py |
diffstat | 1 files changed, 15 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/templatefilters.py Sat Aug 08 20:16:56 2015 -0700 +++ b/mercurial/templatefilters.py Sat Aug 08 20:08:52 2015 -0700 @@ -5,10 +5,21 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -import cgi, re, os, time, urllib -import encoding, node, util -import hbisect -import templatekw +from __future__ import absolute_import + +import cgi +import os +import re +import time +import urllib + +from . import ( + encoding, + hbisect, + node, + templatekw, + util, +) def addbreaks(text): """:addbreaks: Any text. Add an XHTML "<br />" tag before the end of