comparison mercurial/posix.py @ 14908:e2b5605501df

util: move "default" makedir to posix.py makedir is already defined in win32.py, which gets imported into util.py via windows.py if we are running on Windows
author Adrian Buehlmann <adrian@cadifra.com>
date Fri, 22 Jul 2011 09:53:15 +0200
parents 38af0f514134
children c627fe32c923
comparison
equal deleted inserted replaced
14907:84af56cc673b 14908:e2b5605501df
323 else: 323 else:
324 raise 324 raise
325 except ImportError: 325 except ImportError:
326 pass 326 pass
327 return 80 327 return 80
328
329 def makedir(path, notindexed):
330 os.mkdir(path)