summaryrefslogtreecommitdiff
path: root/python/walmgr.py
diff options
context:
space:
mode:
authorMartin Pihlak2011-10-13 13:11:53 +0000
committerMartin Pihlak2011-10-13 13:11:53 +0000
commitf46bb02aee61bb621551effe329c8fb459aa92dd (patch)
tree76d5591706d80f99039fb4db4e7b05298b298d11 /python/walmgr.py
parent7d469ecad6835adf8df35dfe1c6876709c0372de (diff)
Fix invalid reference to os.path.mkdir
Diffstat (limited to 'python/walmgr.py')
-rwxr-xr-xpython/walmgr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/walmgr.py b/python/walmgr.py
index 737d954c..9856aac6 100755
--- a/python/walmgr.py
+++ b/python/walmgr.py
@@ -997,7 +997,7 @@ config_backup = %(config_backup)s
if not os.path.isdir(ssh_dir):
self.log.info("Creating directory: %s" % ssh_dir)
if not self.not_really:
- os.path.mkdir(ssh_dir)
+ os.mkdir(ssh_dir)
self.log.debug("Reading public key from %s" % self.options.ssh_add_key)
master_pubkey = open(self.options.ssh_add_key).read()