]> git.saurik.com Git - wxWidgets.git/commitdiff
Typo. Who puts vowels in 'makedirs'? ;-)
authorKevin Ollivier <kevino@theolliviers.com>
Mon, 27 Feb 2006 18:26:10 +0000 (18:26 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Mon, 27 Feb 2006 18:26:10 +0000 (18:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/all/taskrunner.py

index 2c2c47aacf1f1aa39b13dd22989d71ce78d6b3df..7b7f9aa7126ebb3473cc09a1304cd547d61b7347 100644 (file)
@@ -66,7 +66,7 @@ class Job(object):
         self.proc = None
         if self.label:
             if not os.path.exists(self.LOGBASE):
-                os.mkdirs(self.LOGBASE)
+                os.makedirs(self.LOGBASE)
             self.log = file("%s/%s.log" % (self.LOGBASE, label), "w", 0)
 
     def start(self):