diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-04 11:30:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-04 11:30:16 (GMT) |
commit | af722bf9cf7094576303d4a7a2fc38200a12d773 (patch) | |
tree | 93efd0f14f32129a03cfdc73d98a202c0cd2e7f8 /Lib | |
parent | b1dd5572d3815c1d18a0ccdecaff6db12c167cce (diff) | |
download | cpython-af722bf9cf7094576303d4a7a2fc38200a12d773.zip cpython-af722bf9cf7094576303d4a7a2fc38200a12d773.tar.gz cpython-af722bf9cf7094576303d4a7a2fc38200a12d773.tar.bz2 |
Issues #18901, #18919: Fix a typo in the _sunau_params name.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/sunau.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sunau.py b/Lib/sunau.py index 7d7cd6c..010ce23 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py @@ -386,7 +386,7 @@ class Au_write: self.setcomptype(comptype, compname) def getparams(self): - return _sunau_getparams(self.getnchannels(), self.getsampwidth(), + return _sunau_params(self.getnchannels(), self.getsampwidth(), self.getframerate(), self.getnframes(), self.getcomptype(), self.getcompname()) |