cloudflare_dns: Cosmetic cleanup

This commit is contained in:
Michael Gruener 2016-03-25 21:08:25 +01:00 committed by Matt Clay
parent 90503c9f2a
commit bdeb5af740

View file

@ -3,7 +3,7 @@
# (c) 2016 Michael Gruener <michael.gruener@chaosmoon.net> # (c) 2016 Michael Gruener <michael.gruener@chaosmoon.net>
# #
# This file is (intends to be) part of Ansible # This file is part of Ansible
# #
# Ansible is free software: you can redistribute it and/or modify # Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -114,7 +114,7 @@ options:
''' '''
EXAMPLES = ''' EXAMPLES = '''
# create a test.my.com A record to point to 127.0.0.01 # create a test.my.com A record to point to 127.0.0.1
- cloudflare_dns: - cloudflare_dns:
zone: my.com zone: my.com
record: test record: test
@ -428,7 +428,6 @@ class CloudflareAPI(object):
if (not value) and (value is not None): if (not value) and (value is not None):
value = self.value value = self.value
zone_id = self._get_zone_id() zone_id = self._get_zone_id()
api_call = '/zones/{0}/dns_records'.format(zone_id) api_call = '/zones/{0}/dns_records'.format(zone_id)
query = {} query = {}