From f46bb02aee61bb621551effe329c8fb459aa92dd Mon Sep 17 00:00:00 2001 From: Martin Pihlak Date: Thu, 13 Oct 2011 16:11:53 +0300 Subject: Fix invalid reference to os.path.mkdir --- python/walmgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/walmgr.py') 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() -- cgit v1.2.3