Skip to content

Commit

Permalink
Merge branch 'treesize' of git://github.com/chasephillips/buildbot
Browse files Browse the repository at this point in the history
* 'treesize' of git://github.com/chasephillips/buildbot:
  Fix a nit in TreeSize.
  • Loading branch information
Dustin J. Mitchell committed Feb 12, 2010
2 parents 90e716b + 61b779f commit 2ef1a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildbot/steps/shell.py
Expand Up @@ -226,11 +226,11 @@ def start(self):
class TreeSize(ShellCommand):
name = "treesize"
command = ["du", "-s", "-k", "."]
description = "measuring tree size"
descriptionDone = "tree size measured"
kib = None

def __init__(self, *args, **kwargs):
kwargs.setdefault('description', 'taking tree size')
kwargs.setdefault('descriptionDone', 'tree sized')
ShellCommand.__init__(self, *args, **kwargs)

def commandComplete(self, cmd):
Expand Down

0 comments on commit 2ef1a71

Please sign in to comment.