1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Ruben Undheim <ruben.undheim@gmail.com>
Date: Sun, 18 Oct 2020 11:39:45 +0200
Subject: Included script should run with Python 3
---
skrf/programs/plot_touchstone.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/skrf/programs/plot_touchstone.py b/skrf/programs/plot_touchstone.py
index b37a102..1300ca5 100755
--- a/skrf/programs/plot_touchstone.py
+++ b/skrf/programs/plot_touchstone.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import sys
import optparse
import pylab as plb
|