Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build.py

Issue 29670676: Issue 5844 - Remove redundant parentheses in buildtools (Closed) Base URL: https://hg.adblockplus.org/buildtools/
Patch Set: Fixed indentation and (previously ignored) A111 error in packagerChrome.py Created Jan. 25, 2018, 7:20 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ensure_dependencies.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -127,12 +127,12 @@
arguments=(
make_argument(
'-b', '--build-num', dest='build_num',
- help=('Use given build number (if omitted the build number will '
- 'be retrieved from Mercurial)')),
+ help='Use given build number (if omitted the build number will '
+ 'be retrieved from Mercurial)'),
make_argument(
'-k', '--key', dest='key_file',
- help=('File containing private key and certificates required to '
- 'sign the package')),
+ help='File containing private key and certificates required to '
+ 'sign the package'),
make_argument(
'-r', '--release', action='store_true',
help='Create a release build'),
@@ -330,12 +330,12 @@
arguments=(
make_argument(
'-k', '--key', dest='key_file',
- help=('File containing private key and certificates required to '
- 'sign the release.')),
+ help='File containing private key and certificates required to '
+ 'sign the release.'),
make_argument(
'-d', '--downloads-repository', dest='downloads_repository',
- help=('Directory containing downloads repository (if omitted '
- '../downloads is assumed)')),
+ help='Directory containing downloads repository (if omitted '
+ '../downloads is assumed)'),
make_argument(
'version', help='Version number of the release',
type=valid_version_format)
« no previous file with comments | « no previous file | ensure_dependencies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld