Skip to content

Commit

Permalink
refs buildbot#602 - use os.makedirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Dec 19, 2009
1 parent 676b0c3 commit f6397a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/slave/bot.py
Expand Up @@ -86,7 +86,7 @@ def setBuilddir(self, builddir):
self.builddir = builddir
self.basedir = os.path.join(self.bot.basedir, self.builddir)
if not os.path.isdir(self.basedir):
os.mkdir(self.basedir)
os.makedirs(self.basedir)

def stopService(self):
service.Service.stopService(self)
Expand Down

0 comments on commit f6397a8

Please sign in to comment.