Reverse the default value of the bzr module force flags

This commit is contained in:
Toshio Kuratomi 2015-01-29 18:21:21 -08:00 committed by Matt Clay
parent 6c6b9d2b4d
commit 2a6b66053d

View file

@ -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),
)
)