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

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

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