Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-13 16:26:07 +02:00
parent fec3cca3b0
commit 12784c8bd8
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ class Local(object):
def mkdir(self, path):
"""Create directory on the local side."""
self.log.debug("Local mkdir: %s", path)
# FIXME: dont set mode here, fix unittest mkdtemp instead
os.makedirs(path, mode=0o700, exist_ok=True)
def run(self, command, env=None):