[Python-checkins] cpython: Issues #18901, #18919: Fix a typo in the _sunau_params name.

serhiy.storchaka python-checkins at python.org
Wed Sep 4 13:30:37 CEST 2013


http://hg.python.org/cpython/rev/61ca4732399b
changeset:   85522:61ca4732399b
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Sep 04 14:30:16 2013 +0300
summary:
  Issues #18901, #18919: Fix a typo in the _sunau_params name.

files:
  Lib/sunau.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/sunau.py b/Lib/sunau.py
--- a/Lib/sunau.py
+++ b/Lib/sunau.py
@@ -386,7 +386,7 @@
         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())
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list