mirror of
https://github.com/python/cpython.git
synced 2025-10-14 18:59:46 +00:00
Oooopsss.....tab and space mismatch corrected.
This commit is contained in:
parent
413407f103
commit
92a69138b3
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ def play_sound_file(path):
|
||||||
try:
|
try:
|
||||||
a = linuxaudiodev.open('w')
|
a = linuxaudiodev.open('w')
|
||||||
except linuxaudiodev.error, msg:
|
except linuxaudiodev.error, msg:
|
||||||
if msg[0] in (errno.EACCES, errno.ENODEV):
|
if msg[0] in (errno.EACCES, errno.ENODEV):
|
||||||
raise TestSkipped, msg
|
raise TestSkipped, msg
|
||||||
raise TestFailed, msg
|
raise TestFailed, msg
|
||||||
else:
|
else:
|
||||||
a.write(data)
|
a.write(data)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue