comparison mercurial/scmposix.py @ 27483:39087ee88835

scmposix: use absolute_import
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Dec 2015 21:24:49 -0800
parents 23c995ed466b
children c90a05124fae
comparison
equal deleted inserted replaced
27482:dde3da2246f1 27483:39087ee88835
1 import sys, os 1 from __future__ import absolute_import
2 import osutil 2
3 import os
4 import sys
5
6 from . import (
7 osutil,
8 )
3 9
4 def _rcfiles(path): 10 def _rcfiles(path):
5 rcs = [os.path.join(path, 'hgrc')] 11 rcs = [os.path.join(path, 'hgrc')]
6 rcdir = os.path.join(path, 'hgrc.d') 12 rcdir = os.path.join(path, 'hgrc.d')
7 try: 13 try: