From: Ralf Jung Date: Thu, 1 Jan 2015 21:50:04 +0000 (+0100) Subject: fix typo X-Git-Url: https://git.ralfj.de/zonemaker.git/commitdiff_plain/6eba900abc6dc54d9ef740090d4522ee80b62ef6 fix typo --- 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)