Commit 16252724 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Silence deprecation warning in sunau.py

parent 8119c13f
......@@ -224,7 +224,7 @@ class Au_read:
if self._data_size == AUDIO_UNKNOWN_SIZE:
return AUDIO_UNKNOWN_SIZE
if self._encoding in _simple_encodings:
return self._data_size / self._framesize
return self._data_size // self._framesize
return 0 # XXX--must do some arithmetic here
def getcomptype(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment