From 84b83f9f2c08ad66597420753dc9671d21d6a37c Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 1 May 2020 13:02:48 -0700 Subject: [PATCH] make all shebangs python3 --- examples/ddns.py | 2 +- examples/e164.py | 2 +- examples/mx.py | 2 +- examples/name.py | 2 +- examples/query_specific.py | 2 +- examples/reverse.py | 2 +- examples/reverse_name.py | 2 +- examples/xfr.py | 2 +- examples/zonediff.py | 2 +- setup.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/ddns.py b/examples/ddns.py index f351524e..c584f422 100755 --- a/examples/ddns.py +++ b/examples/ddns.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Use a TSIG-signed DDNS update to update our hostname-to-address diff --git a/examples/e164.py b/examples/e164.py index 497fd680..6d9e8727 100755 --- a/examples/e164.py +++ b/examples/e164.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.e164 n = dns.e164.from_e164("+1 555 1212") diff --git a/examples/mx.py b/examples/mx.py index a4bad708..c8eaa101 100755 --- a/examples/mx.py +++ b/examples/mx.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.resolver diff --git a/examples/name.py b/examples/name.py index 40d0c562..614fdbc0 100755 --- a/examples/name.py +++ b/examples/name.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.name diff --git a/examples/query_specific.py b/examples/query_specific.py index 23eff30d..5d8aeb93 100644 --- a/examples/query_specific.py +++ b/examples/query_specific.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Two ways of querying a specific nameserver. diff --git a/examples/reverse.py b/examples/reverse.py index a0293eeb..83b99b77 100755 --- a/examples/reverse.py +++ b/examples/reverse.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Usage: reverse.py ... # diff --git a/examples/reverse_name.py b/examples/reverse_name.py index a87fe344..02b2e514 100755 --- a/examples/reverse_name.py +++ b/examples/reverse_name.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.reversename n = dns.reversename.from_address("127.0.0.1") diff --git a/examples/xfr.py b/examples/xfr.py index c09aa358..41731e35 100755 --- a/examples/xfr.py +++ b/examples/xfr.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import dns.query import dns.resolver diff --git a/examples/zonediff.py b/examples/zonediff.py index 112df409..164bf2b5 100755 --- a/examples/zonediff.py +++ b/examples/zonediff.py @@ -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 diff --git a/setup.py b/setup.py index 6e0c945a..497d8e49 100755 --- 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 # -- 2.47.3