Skip to content

Commit

Permalink
Merge branch 'bug972' of git://github.com/jollyroger/buildbot
Browse files Browse the repository at this point in the history
* 'bug972' of git://github.com/jollyroger/buildbot:
  Fixing conflicting command-line options.
  • Loading branch information
Dustin J. Mitchell committed Aug 21, 2010
2 parents 7ecdef5 + 281c673 commit 88899b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions master/NEWS
Expand Up @@ -10,6 +10,15 @@ This sets the number of changes that buildbot will keep in memory at once.
Users of distributed version control systems should consider setting this to a
high value (e.g. 10,000)

** Command-line options changed

To resolve conflicting command-line options (ticket #972) for sendchange
command the following changes were done:

* `-m` option now means `--master`
* `-c` option now means `--comments`
* `-C` option now means `--category`

** Required Jinja Version

The Buildmaster now requires Jinja-2.1 or higher.
Expand Down
4 changes: 2 additions & 2 deletions master/buildbot/scripts/runner.py
Expand Up @@ -766,12 +766,12 @@ def __init__(self):
("repository", "R", None, "Repository specifier"),
("project", "P", None, "Project specifier"),
("branch", "b", None, "Branch specifier"),
("category", "c", None, "Category of repository"),
("category", "C", None, "Category of repository"),
("revision", "r", None, "Revision specifier"),
("revision_file", None, None, "Filename containing revision spec"),
("property", "p", None,
"A property for the change, in the format: name:value"),
("comments", "m", None, "log message"),
("comments", "c", None, "log message"),
("logfile", "F", None,
"Read the log messages from this file (- for stdin)"),
("when", "w", None, "timestamp to use as the change time"),
Expand Down

0 comments on commit 88899b1

Please sign in to comment.