fix typo
[zonemaker.git] / zone.py
diff --git a/zone.py b/zone.py
index 473b79f829bdf2da85d7046449422bae2c041406..68a82b32295de60ef4b68fe2f9220d3f81f5871d 100644 (file)
--- 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)