Reverse the default value of the bzr module force flags
This commit is contained in:
parent
6c6b9d2b4d
commit
2a6b66053d
1 changed files with 4 additions and 3 deletions
|
@ -45,11 +45,12 @@ options:
|
|||
bzr revno or revid.
|
||||
force:
|
||||
required: false
|
||||
default: "yes"
|
||||
default: "no"
|
||||
choices: [ 'yes', 'no' ]
|
||||
description:
|
||||
- If C(yes), any modified files in the working
|
||||
tree will be discarded.
|
||||
tree will be discarded. Before 1.9 the default
|
||||
value was "yes".
|
||||
executable:
|
||||
required: false
|
||||
default: null
|
||||
|
@ -145,7 +146,7 @@ def main():
|
|||
dest=dict(required=True),
|
||||
name=dict(required=True, aliases=['parent']),
|
||||
version=dict(default='head'),
|
||||
force=dict(default='yes', type='bool'),
|
||||
force=dict(default='no', type='bool'),
|
||||
executable=dict(default=None),
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue