1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix PEP8 commenting, but comment seems obvious so just remove it.

This commit is contained in:
Michael DeHaan 2013-08-03 14:55:01 -04:00
parent dec43f7a2b
commit 841fd11f41

View file

@ -203,7 +203,7 @@ def delete_meter(module, name, apiid, apikey):
try:
cert_file = '%s/%s.pem' % (config_directory,cert_type)
os.remove(cert_file)
except OSError, e: ## if failed, report it back to the user ##
except OSError, e:
module.fail_json("Failed to remove " + cert_type + ".pem file")
return 0, "Meter " + name + " deleted"
@ -268,4 +268,4 @@ def main():
# include magic from lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
main()
main()