From a961691ce6c61f32b4e92a16cf216a1ce130e993 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 3 May 2020 06:42:22 -0700 Subject: [PATCH] fix indentation error after tokenizer refactoring --- dns/tokenizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/tokenizer.py b/dns/tokenizer.py index 57d4a572..b56f97a8 100644 --- a/dns/tokenizer.py +++ b/dns/tokenizer.py @@ -425,7 +425,7 @@ class Tokenizer(object): self._unget_char(c) break elif self.quoting and c == '\n': - raise dns.exception.SyntaxError('newline in quoted string') + raise dns.exception.SyntaxError('newline in quoted string') elif c == '\\': # # It's an escape. Put it and the next character into -- 2.47.3