diff options
author | John Glover <j@johnglover.net> | 2021-07-23 09:26:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 09:26:09 +0100 |
commit | 2565396236c2672aa8ed298128f051b19783a057 (patch) | |
tree | ba3d296912933c633ddd0f38fefcd98ab046f73f /examples | |
parent | 9841b18ad62d4c09eb1670f6acf2b0b40ad9d3e3 (diff) | |
parent | 8fa67c9c8b9c3c6d20183faa3fd3d64e46523d68 (diff) | |
download | simpl-2565396236c2672aa8ed298128f051b19783a057.tar.gz simpl-2565396236c2672aa8ed298128f051b19783a057.tar.bz2 simpl-2565396236c2672aa8ed298128f051b19783a057.zip |
Merge pull request #3 from bwhitman/master
Fixed for python 3
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pitchshift.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pitchshift.py b/examples/pitchshift.py index df27c7e..b7d74fd 100644 --- a/examples/pitchshift.py +++ b/examples/pitchshift.py @@ -8,7 +8,7 @@ usage = 'Usage: python {0} '.format(__file__) + \ '<input wav file> <pitch shift amount> <output wav file>' if len(sys.argv) != 4: - print usage + print(usage) sys.exit(1) audio, sampling_rate = simpl.read_wav(sys.argv[1]) |