Skip to content

Commit

Permalink
Merge pull request #15 from GeertHauwaerts/patch-1
Browse files Browse the repository at this point in the history
Fix for CAA Records
  • Loading branch information
bobrik authored Dec 4, 2020
2 parents 013bd70 + 20d822c commit 92b8a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudflare.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def data(self):
"target": target,
}
if self.type == "CAA":
parts = self.content.split("\t")
parts = self.content.split(" ")
flags, tag, value = parts
return {
"name": self.name,
Expand Down

0 comments on commit 92b8a5d

Please sign in to comment.