Skip to content

Commit

Permalink
Merge branch 'master' into nine
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 5, 2014
2 parents 994b748 + 1e98fb4 commit bf4aefd
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 33 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/steps/source/svn.py
Expand Up @@ -182,7 +182,7 @@ def copy(self):
export_cmd.extend(["--revision", str(self.revision)])
if self.username:
export_cmd.extend(['--username', self.username])
if self.password:
if self.password is not None:
export_cmd.extend(['--password', ('obfuscated', self.password, 'XXXXXX')])
if self.extra_args:
export_cmd.extend(self.extra_args)
Expand Down Expand Up @@ -212,7 +212,7 @@ def _dovccmd(self, command, collectStdout=False, abandonOnFailure=True):
command.extend(['--non-interactive', '--no-auth-cache'])
if self.username:
command.extend(['--username', self.username])
if self.password:
if self.password is not None:
command.extend(['--password', ('obfuscated', self.password, 'XXXXXX')])
if self.depth:
command.extend(['--depth', self.depth])
Expand Down

0 comments on commit bf4aefd

Please sign in to comment.