diff options
author | Brian Whitman <brian@variogr.am> | 2021-06-22 16:34:46 -0700 |
---|---|---|
committer | Brian Whitman <brian@variogr.am> | 2021-06-22 16:34:46 -0700 |
commit | 8fa67c9c8b9c3c6d20183faa3fd3d64e46523d68 (patch) | |
tree | ba3d296912933c633ddd0f38fefcd98ab046f73f /examples | |
parent | 9841b18ad62d4c09eb1670f6acf2b0b40ad9d3e3 (diff) | |
download | simpl-8fa67c9c8b9c3c6d20183faa3fd3d64e46523d68.tar.gz simpl-8fa67c9c8b9c3c6d20183faa3fd3d64e46523d68.tar.bz2 simpl-8fa67c9c8b9c3c6d20183faa3fd3d64e46523d68.zip |
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]) |