+FIXME
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
fec3cca3b0
commit
12784c8bd8
1 changed files with 1 additions and 0 deletions
|
@ -83,6 +83,7 @@ class Local(object):
|
||||||
def mkdir(self, path):
|
def mkdir(self, path):
|
||||||
"""Create directory on the local side."""
|
"""Create directory on the local side."""
|
||||||
self.log.debug("Local mkdir: %s", path)
|
self.log.debug("Local mkdir: %s", path)
|
||||||
|
# FIXME: dont set mode here, fix unittest mkdtemp instead
|
||||||
os.makedirs(path, mode=0o700, exist_ok=True)
|
os.makedirs(path, mode=0o700, exist_ok=True)
|
||||||
|
|
||||||
def run(self, command, env=None):
|
def run(self, command, env=None):
|
||||||
|
|
Loading…
Reference in a new issue