From 5c63899cbffacb9a0506eb79f9b5d7c6398bd031 Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 23 Jul 2021 09:35:28 +0100 Subject: More Python 3 cleanup --- examples/harmonicsynthesis.py | 2 +- examples/plotpartials.py | 2 +- examples/plotpeaks.py | 2 +- examples/residualsynthesis.py | 2 +- examples/timescale.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'examples') diff --git a/examples/harmonicsynthesis.py b/examples/harmonicsynthesis.py index 401025d..983e6df 100644 --- a/examples/harmonicsynthesis.py +++ b/examples/harmonicsynthesis.py @@ -5,7 +5,7 @@ import simpl usage = 'Usage: python {0} '.format(__file__) if len(sys.argv) != 3: - print usage + print(usage) sys.exit(1) audio, sampling_rate = simpl.read_wav(sys.argv[1]) diff --git a/examples/plotpartials.py b/examples/plotpartials.py index cf06ae1..89cc53b 100644 --- a/examples/plotpartials.py +++ b/examples/plotpartials.py @@ -4,7 +4,7 @@ import simpl usage = 'Usage: python {0} '.format(__file__) if len(sys.argv) != 2: - print usage + print(usage) sys.exit(1) audio = simpl.read_wav(sys.argv[1])[0] diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py index 7c7b59e..ea9ff4c 100644 --- a/examples/plotpeaks.py +++ b/examples/plotpeaks.py @@ -4,7 +4,7 @@ import matplotlib.pyplot as plt usage = 'Usage: python {0} '.format(__file__) if len(sys.argv) != 2: - print usage + print(usage) sys.exit(1) audio = simpl.read_wav(sys.argv[1])[0] diff --git a/examples/residualsynthesis.py b/examples/residualsynthesis.py index f3559c8..5bf5efe 100644 --- a/examples/residualsynthesis.py +++ b/examples/residualsynthesis.py @@ -5,7 +5,7 @@ import simpl usage = 'Usage: python {0} '.format(__file__) if len(sys.argv) != 3: - print usage + print(usage) sys.exit(1) audio, sampling_rate = simpl.read_wav(sys.argv[1]) diff --git a/examples/timescale.py b/examples/timescale.py index 2b061d7..9ba03ef 100644 --- a/examples/timescale.py +++ b/examples/timescale.py @@ -7,7 +7,7 @@ usage = 'Usage: python {0} '.format(__file__) + \ '