Fix typo in apt error message: update-cache -> update_cache

The apt parameter changed from update-cache to update_cache, but
the error message still mentioned update-cache
This commit is contained in:
Lorin Hochstein 2012-07-29 12:28:50 -04:00
parent 948e357766
commit 481a1916e0

2
apt
View file

@ -128,7 +128,7 @@ def main():
p = module.params
if p['package'] is None and p['update_cache'] != 'yes':
module.fail_json(msg='pkg=name and/or update-cache=yes is required')
module.fail_json(msg='pkg=name and/or update_cache=yes is required')
install_recommends = (p['install_recommends'] == 'yes')