mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
import: fix --omit-disable flag, its a boolean
This commit is contained in:
parent
ba854ab24a
commit
30f2d62597
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ def main():
|
||||||
help=_("Comma separated list of categories."))
|
help=_("Comma separated list of categories."))
|
||||||
parser.add_argument("-l", "--license", default=None,
|
parser.add_argument("-l", "--license", default=None,
|
||||||
help=_("Overall license of the project."))
|
help=_("Overall license of the project."))
|
||||||
parser.add_argument("--omit-disable", default=False,
|
parser.add_argument("--omit-disable", action="store_true", default=False,
|
||||||
help=_("Do not add 'disable:' to the generated build entries"))
|
help=_("Do not add 'disable:' to the generated build entries"))
|
||||||
parser.add_argument("--rev", default=None,
|
parser.add_argument("--rev", default=None,
|
||||||
help=_("Allows a different revision (or git branch) to be specified for the initial import"))
|
help=_("Allows a different revision (or git branch) to be specified for the initial import"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue