Skip to content

Commit

Permalink
fixes the lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lostbird authored and tonybaloney committed Mar 30, 2016
1 parent 8d975a2 commit 686868d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libcloud/common/luadns.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ def __str__(self):
return "%s %s" % (self.code, self.message)

def __repr__(self):
return "Luadns %s %s" % (self.code, self.message)
return "Luadns %s %s" % (self.code, self.message)
4 changes: 2 additions & 2 deletions libcloud/dns/drivers/luadns.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import json

from libcloud.common.luadns import LuadnsResponse, LuadnsConnection,\
LuadnsException
LuadnsException
from libcloud.dns.base import DNSDriver, Zone, Record
from libcloud.dns.types import Provider, RecordType
from libcloud.dns.types import ZoneDoesNotExistError, ZoneAlreadyExistsError
Expand Down Expand Up @@ -290,4 +290,4 @@ def _to_records(self, items, zone):
for item in items:
records.append(self._to_record(item, zone))

return records
return records
2 changes: 1 addition & 1 deletion libcloud/test/dns/test_luadns.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,4 +303,4 @@ def _v1_zones_11_records_CREATE_RECORD_SUCCESS(self, method, url,


if __name__ == '__main__':
sys.exit(unittest.main())
sys.exit(unittest.main())

0 comments on commit 686868d

Please sign in to comment.