From b6f026ed9d41aece0ec0028d706be42fbce39ac2 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Fri, 7 Jul 2023 09:29:39 -0400 Subject: [PATCH] Add shebang for ecs.py (#950) I know this is trivial, but the Debian QA tools get slightly grumpy when there's no shebang for an executable script, so it would make things slightly easier for me if you would add this. Thanks, Scott K --- examples/ecs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ecs.py b/examples/ecs.py index d5a84f24..03a16bbf 100755 --- a/examples/ecs.py +++ b/examples/ecs.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import dns.edns import dns.message import dns.query -- 2.47.3