Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
chmouel committed Jul 2, 2011
1 parent 63fd675 commit f326aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clouddns/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def get_domains(self):
def list_domains_info(self, filter_by_name=None):
parms = {}
if filter_by_name:
parms = { 'name' : filter_by_name}
parms = {'name': filter_by_name}
response = self.make_request('GET', ['domains'], parms=parms)
if (response.status < 200) or (response.status > 299):
response.read()
Expand Down

0 comments on commit f326aa7

Please sign in to comment.