summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/packaging/os/urpmi.py
diff options
context:
space:
mode:
authorCarlos E. Garcia <carlos@cgarcia.org>2016-12-10 21:50:09 -0500
committerBrian Coca <bcoca@users.noreply.github.com>2016-12-13 13:51:13 -0500
commit0b8011436dc7f842b78298848e298f2a57ee8d78 (patch)
tree239496b48fd051dcdc6cacf18c9bae48728aad1e /lib/ansible/modules/packaging/os/urpmi.py
parent054a3fccf808cc9746e773818dfcfbc4fbca7eb7 (diff)
downloadansible-0b8011436dc7f842b78298848e298f2a57ee8d78.tar.gz
minor spelling changes
Diffstat (limited to 'lib/ansible/modules/packaging/os/urpmi.py')
-rw-r--r--lib/ansible/modules/packaging/os/urpmi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/packaging/os/urpmi.py b/lib/ansible/modules/packaging/os/urpmi.py
index e995f1d489..beae17d13d 100644
--- a/lib/ansible/modules/packaging/os/urpmi.py
+++ b/lib/ansible/modules/packaging/os/urpmi.py
@@ -124,7 +124,7 @@ def update_package_db(module):
def remove_packages(module, packages):
remove_c = 0
- # Using a for loop incase of error, we can report the package that failed
+ # Using a for loop in case of error, we can report the package that failed
for package in packages:
# Query the package first, to see if we even need to remove
if not query_package(module, package):