Skip to content

Commit

Permalink
Merge branch 'renderables_dup' of git://github.com/Ratio2/buildbot
Browse files Browse the repository at this point in the history
+autopep8
  • Loading branch information
djmitche committed Nov 20, 2013
2 parents 219f00c + 6ef3aef commit cad2c77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion master/buildbot/steps/shell.py
Expand Up @@ -76,7 +76,7 @@ class ShellCommand(buildstep.LoggingBuildStep):
"""

name = "shell"
renderables = buildstep.LoggingBuildStep.renderables + [
renderables = [
'slaveEnvironment', 'remote_kwargs', 'command',
'description', 'descriptionDone', 'descriptionSuffix',
'haltOnFailure', 'flunkOnFailure']
Expand Down
5 changes: 2 additions & 3 deletions master/buildbot/steps/source/base.py
Expand Up @@ -35,9 +35,8 @@ class Source(LoggingBuildStep, CompositeStepMixin):
starts a RemoteCommand with those arguments.
"""

renderables = LoggingBuildStep.renderables + [
'description', 'descriptionDone', 'descriptionSuffix',
'workdir']
renderables = ['description', 'descriptionDone', 'descriptionSuffix',
'workdir']

description = None # set this to a list of short strings to override
descriptionDone = None # alternate description when the step is complete
Expand Down

0 comments on commit cad2c77

Please sign in to comment.