Commit 42333cd0 authored by Barry Warsaw's avatar Barry Warsaw

__pushtodev(): Ignore transient sunaudiodev.errors when setting the

device info.  I don't know why these occur, but they seem to be
shortlived and harmless.
parent 817b4faa
......@@ -308,7 +308,11 @@ Email: bwarsaw@python.org''' % __version__)
self.__linevar.get()
info.i_port = self.__inputvar.get()
info.o_gain = self.__scalevar.get()
try:
self.__devctl.setinfo(info)
except sunaudiodev.error, msg:
# TBD: what to do? it's probably temporary.
pass
def __getset(self, var, onvalue):
if var.get() == onvalue:
......
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