mercurial/scmposix.py
changeset 27483 39087ee88835
parent 22583 23c995ed466b
child 30276 c90a05124fae
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: