Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/utils.py
blob: 3b26afbfa39e548a00a37ddd6e0cd828f05cecd1 (plain)
1
2
3
4
5
6
7
8
9
10
import os

devnull = open("/dev/null", "w")


def ensure_dir(path):
    try:
        os.mkdir(path)
    except OSError:
        pass