Skip to content

Commit

Permalink
fix pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jul 8, 2011
1 parent 9b032e6 commit d17481b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions master/buildbot/steps/source/git.py
Expand Up @@ -112,12 +112,12 @@ def full(self):
if self.method == 'clobber':
wfd = defer.waitForDeferred(self.clobber())
yield wfd
res = wfd.getResult()
wfd.getResult()
return
elif self.method == 'copy':
wfd = defer.waitForDeferred(self.copy())
yield wfd
res = wfd.getResult()
wfd.getResult()
return

wfd = defer.waitForDeferred(self._sourcedirIsUpdatable())
Expand All @@ -134,7 +134,7 @@ def full(self):
raise ValueError("Unknown method, check your configuration")
wfd = defer.waitForDeferred(d)
yield wfd
res = wfd.getResult()
wfd.getResult()

def incremental(self):
d = self._sourcedirIsUpdatable()
Expand Down

0 comments on commit d17481b

Please sign in to comment.