diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2023-07-12 09:43:26 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2023-07-12 12:43:11 +1200 |
commit | 68aeccde30192a022bebab89d9151309ab44e096 (patch) | |
tree | 8e8e962172efa0b37d8ab7010e92b59ff59a29a4 | |
parent | Remove unused variables from test suite (diff) | |
download | ssh_negotiate_term-68aeccde30192a022bebab89d9151309ab44e096.tar.gz ssh_negotiate_term-68aeccde30192a022bebab89d9151309ab44e096.zip |
Correct shebangs
-rw-r--r-- | ssh_negotiate_term.py | 2 | ||||
-rw-r--r-- | test.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ssh_negotiate_term.py b/ssh_negotiate_term.py index e79bfa7..c1be359 100644 --- a/ssh_negotiate_term.py +++ b/ssh_negotiate_term.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!python3 """ Wrap ssh(1) commands, parse the options, and check whether the hostname argument is either an IPv4/IPv6 address or matches any of a set of configured @@ -1,4 +1,3 @@ -#!/usr/bin/python3 import configparser import unittest |