Skip to content

Commit

Permalink
Fixed renderables duplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey Vasenev committed Nov 20, 2013
1 parent 219f00c commit 6ef3aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion master/buildbot/steps/shell.py
Original file line number Diff line number Diff line change
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
3 changes: 1 addition & 2 deletions master/buildbot/steps/source/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ class Source(LoggingBuildStep, CompositeStepMixin):
starts a RemoteCommand with those arguments.
"""

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

description = None # set this to a list of short strings to override
Expand Down

0 comments on commit 6ef3aef

Please sign in to comment.