Skip to content

Commit

Permalink
README: remove spaces between kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdreyer committed Jun 16, 2018
1 parent 92338ee commit 2b17f0c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.rst
Expand Up @@ -192,9 +192,9 @@ DNS API
# Add a DNS resource record. The name+type must not exist yet.
nfsn.dns('example.com').addRR(
name = 'testing',
type = 'A',
data = '192.0.2.2'
name='testing',
type='A',
data='192.0.2.2'
)
# List all DNS resource records:
Expand Down Expand Up @@ -226,9 +226,9 @@ DNS API
# The name+type must exist, or Nfsn will raise an an error. You must
# specify all three parameters (name, type, data).
nfsn.dns('example.com').removeRR(
name = 'testing',
type = 'A',
data = '192.0.2.2'
name='testing',
type='A',
data='192.0.2.2'
)
Expand Down

0 comments on commit 2b17f0c

Please sign in to comment.