diff options
author | John Glover <j@johnglover.net> | 2021-07-23 09:35:28 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2021-07-23 09:35:28 +0100 |
commit | 5c63899cbffacb9a0506eb79f9b5d7c6398bd031 (patch) | |
tree | f7cf3e6f52b78465f6e6cc04c7d9f46facd4ff74 /examples/plotpartials.py | |
parent | 2565396236c2672aa8ed298128f051b19783a057 (diff) | |
download | simpl-5c63899cbffacb9a0506eb79f9b5d7c6398bd031.tar.gz simpl-5c63899cbffacb9a0506eb79f9b5d7c6398bd031.tar.bz2 simpl-5c63899cbffacb9a0506eb79f9b5d7c6398bd031.zip |
More Python 3 cleanup
Diffstat (limited to 'examples/plotpartials.py')
-rw-r--r-- | examples/plotpartials.py | 2 |
1 files changed, 1 insertions, 1 deletions
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} <wav file>'.format(__file__) if len(sys.argv) != 2: - print usage + print(usage) sys.exit(1) audio = simpl.read_wav(sys.argv[1])[0] |