Skip to content

Commit

Permalink
Correct syntax error in source.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan S. Romero committed Dec 14, 2009
1 parent 3e395a1 commit 297e3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/steps/source.py
Expand Up @@ -495,7 +495,7 @@ def startVC(self, branch, revision, patch):

#Set up depth if specified
if self.depth is not None:
if self.slaveVersionIsOlderThan("svn","2.9")):
if self.slaveVersionIsOlderThan("svn","2.9"):
m = ("This buildslave (%s) does not support svn depth "
"arguments. "
"Refusing to build. "
Expand Down

0 comments on commit 297e3e6

Please sign in to comment.