def makedir()

in uberpoet/util.py [0:0]


def makedir(path):
    """Does a mkdir -p `path` if it doesn't exist"""
    if not os.path.exists(path):
        os.makedirs(path)