From: Moshe Zadka Date: Fri, 4 Aug 2000 15:25:58 +0000 (+0000) Subject: Oooopsss.....tab and space mismatch corrected. X-Git-Tag: v2.0b1~571 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92a69138b3f607384a22e291b4d0af3b1bd1b237;p=python Oooopsss.....tab and space mismatch corrected. --- diff --git a/Lib/test/test_linuxaudiodev.py b/Lib/test/test_linuxaudiodev.py index 64cd80b3b1..4faaab12d2 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)