Skip to content

Commit

Permalink
add a default value for branchType, per Marcus and Marijn
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Jul 13, 2009
1 parent 85d3fa6 commit c68db6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/slave/commands.py
Expand Up @@ -2501,7 +2501,7 @@ def setup(self, args):
self.repourl = args['repourl']
self.clobberOnBranchChange = args.get('clobberOnBranchChange', True)
self.sourcedata = "%s\n" % self.repourl
self.branchType = args['branchType']
self.branchType = args.get('branchType', 'dirname')
self.stdout = ""
self.stderr = ""

Expand Down

0 comments on commit c68db6d

Please sign in to comment.