diff -r ba58c5a61503 -r 43b5fe18ea6c mercurial/util.py --- a/mercurial/util.py Tue Mar 29 16:25:48 2011 +0200 +++ b/mercurial/util.py Mon Mar 28 15:54:22 2011 +0200 @@ -438,6 +438,9 @@ return check +def makedir(path, notindexed): + os.mkdir(path) + def unlinkpath(f): """unlink and remove the directory if it is empty""" os.unlink(f)