]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
make all shebangs python3
authorBob Halley <halley@dnspython.org>
Fri, 1 May 2020 20:02:48 +0000 (13:02 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 1 May 2020 20:02:48 +0000 (13:02 -0700)
examples/ddns.py
examples/e164.py
examples/mx.py
examples/name.py
examples/query_specific.py
examples/reverse.py
examples/reverse_name.py
examples/xfr.py
examples/zonediff.py
setup.py

index f351524ee738290cfe64177208bb0df88bbff61f..c584f4223c6198f7fc114a39f1308f929fbd8b81 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Use a TSIG-signed DDNS update to update our hostname-to-address
index 497fd680e43023c21e894f4738a00aea2b1d2b2b..6d9e8727e47a2508699c14d60fe86606fb26b471 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import dns.e164
 n = dns.e164.from_e164("+1 555 1212")
index a4bad708c3a548e5a1433324a8b5f8b9826c2c3e..c8eaa1016021fbd1a559ac06702d885ed655aa36 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import dns.resolver
 
index 40d0c562550b6354a749fb6906ef1f0c35863b38..614fdbc0403ff0108353b227ca9e2562730a1744 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import dns.name
 
index 23eff30d62e2b4ec3e9308d14bd8789c31aa7bcc..5d8aeb938ce839653982586200f5252c237fe51d 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Two ways of querying a specific nameserver.
 
index a0293eebee7505c079ea9cedee8881368b8ce313..83b99b772a2e66a4e50c5ce6412ee97d60d68e54 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Usage: reverse.py <zone_filename>...
 #
index a87fe344883a90d469c25f55bab5bb0deb066477..02b2e5141c229006d913b1f914509158593d1dda 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import dns.reversename
 n = dns.reversename.from_address("127.0.0.1")
index c09aa3589886fd2c21a0642a09743e3b53c00287..41731e351d142f55a499bef91a764e8a0959f3c3 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import dns.query
 import dns.resolver
index 112df40924018809d0237169cec86c99cedfd38d..164bf2b5278b5fcaaed44c98c74542d9c15bab88 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Small library and commandline tool to do logical diffs of zonefiles
 # ./zonediff -h gives you help output
index 6e0c945a5d69c1ef8c791447618b9902ae7cc39f..497d8e495d5138a8c46c680f1deaeacc0a1c1a23 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
 #