##// END OF EJS Templates
pathutil: use absolute_import
Gregory Szorc -
r25964:d740df4e default
parent child Browse files
Show More
@@ -1,8 +1,15 b''
1 import os, errno, stat, posixpath
1 from __future__ import absolute_import
2 2
3 import encoding
4 import util
5 from i18n import _
3 import errno
4 import os
5 import posixpath
6 import stat
7
8 from .i18n import _
9 from . import (
10 encoding,
11 util,
12 )
6 13
7 14 def _lowerclean(s):
8 15 return encoding.hfsignoreclean(s.lower())
General Comments 0
You need to be logged in to leave comments. Login now