Browse Source

v1.3.1 FIX: Python Shebang

boson 2 years ago
parent
commit
2d0842cd08
1 changed files with 3 additions and 3 deletions
  1. 3 3
      sinetstat

+ 3 - 3
sinetstat

@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 
 # (c) 2016-2019 by Siegrist(SystemLoesungen) <PSS @ ZweierNet.ch> 
 # Website: [https://wiki.zweiernet.ch/wiki/Sinetstat]
@@ -28,7 +28,7 @@ import argparse
 
 
 
-VERSION = '1.3'
+VERSION = '1.3.1'
 
 PROC_TCP4 = "/proc/net/tcp"
 PROC_UDP4 = "/proc/net/udp"
@@ -548,4 +548,4 @@ if __name__ == '__main__':
     if o_v6 == True and o_udp == True and not args.l:
         for conn_udp6 in netstat_udp6():
             print(conn_udp6)
-    
+