From d8accbde75b8e5417dedf3c7f4e70ca890c1b4ea Mon Sep 17 00:00:00 2001 From: Clay Gerrard Date: Mon, 19 Jul 2010 17:28:24 -0500 Subject: [PATCH] fixed typo in swift-init --- bin/swift-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/swift-init b/bin/swift-init index 47f88bbe93..d1fa004f29 100755 --- a/bin/swift-init +++ b/bin/swift-init @@ -74,7 +74,7 @@ def do_start(server, once=False): dir, file = os.path.split(pid_file) if not os.path.exists(dir): try: - os.mkdirs(dir) + os.makedirs(dir) except OSError, err: if err.errno == errno.EACCES: sys.exit('Unable to create %s. Running as non-root?' % dir)