X-Git-Url: https://git.ralfj.de/zonemaker.git/blobdiff_plain/474e851faa5a89800dfbf7b6a839cff697ae3a87..6eba900abc6dc54d9ef740090d4522ee80b62ef6:/zone.py diff --git a/zone.py b/zone.py index 473b79f..68a82b3 100644 --- a/zone.py +++ b/zone.py @@ -139,7 +139,7 @@ class TXT: # test for bad characters for c in ('\n', '\r', '\t'): if c in text: - raise Exception("TXT record {0} containts invalid character") + raise Exception("TXT record {0} contains invalid character") # escape text for c in ('\\', '\"'): text = text.replace(c, '\\'+c)