Merge lp:~mvo/click/fix-options-ignore into lp:click/devel

Proposed by Michael Vogt
Status: Merged
Approved by: Michael Vogt
Approved revision: 563
Merged at revision: 563
Proposed branch: lp:~mvo/click/fix-options-ignore
Merge into: lp:click/devel
Diff against target: 12 lines (+1/-1)
1 file modified
click/commands/build.py (+1/-1)
To merge this branch: bzr merge lp:~mvo/click/fix-options-ignore
Reviewer Review Type Date Requested Status
click hackers Pending
Review via email: mp+250735@code.launchpad.net

Commit message

fix missing --ignore default

Description of the change

This branch fixes a adt build failure

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'click/commands/build.py'
2--- click/commands/build.py 2014-09-29 11:30:27 +0000
3+++ click/commands/build.py 2015-02-24 12:22:32 +0000
4@@ -35,7 +35,7 @@
5 "--no-validate", action="store_false", default=True, dest="validate",
6 help="Don't run click-reviewers-tools check on resulting .click")
7 parser.add_option(
8- "-I", "--ignore", metavar="file-pattern", action='append',
9+ "-I", "--ignore", metavar="file-pattern", action='append', default=[],
10 help="Ignore the given pattern when building the package")
11 options, args = parser.parse_args(argv)
12 if len(args) < 1:

Subscribers

People subscribed via source and target branches

to all changes: