summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_linuxaudiodev.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_linuxaudiodev.py')
-rw-r--r--Lib/test/test_linuxaudiodev.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py
index 64cd80b3..4faaab1 100644
--- a/Lib/test/test_linuxaudiodev.py
+++ b/Lib/test/test_linuxaudiodev.py
@@ -10,8 +10,8 @@ def play_sound_file(path):
try:
a = linuxaudiodev.open('w')
except linuxaudiodev.error, msg:
- if msg[0] in (errno.EACCES, errno.ENODEV):
- raise TestSkipped, msg
+ if msg[0] in (errno.EACCES, errno.ENODEV):
+ raise TestSkipped, msg
raise TestFailed, msg
else:
a.write(data)