##// END OF EJS Templates
progress: use absolute_import
Gregory Szorc -
r25968:1139d7cf default
parent child Browse files
Show More
@@ -5,13 +5,14 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 from __future__ import absolute_import
9
8 10 import sys
9 import time
10 11 import threading
11 from mercurial import encoding
12 import time
12 13
13 from mercurial.i18n import _
14
14 from .i18n import _
15 from . import encoding
15 16
16 17 def spacejoin(*args):
17 18 return ' '.join(s for s in args if s)
General Comments 0
You need to be logged in to leave comments. Login now