diff options
| author | Moshe Zadka <moshez@math.huji.ac.il> | 2000-08-04 15:25:58 (GMT) |
|---|---|---|
| committer | Moshe Zadka <moshez@math.huji.ac.il> | 2000-08-04 15:25:58 (GMT) |
| commit | 92a69138b3f607384a22e291b4d0af3b1bd1b237 (patch) | |
| tree | 6ad76c5e34f821bec90aa30ac94290371a744120 /Lib/test/test_linuxaudiodev.py | |
| parent | 413407f103b59568b7fc0ef6036805521cfddbff (diff) | |
| download | cpython-92a69138b3f607384a22e291b4d0af3b1bd1b237.zip cpython-92a69138b3f607384a22e291b4d0af3b1bd1b237.tar.gz cpython-92a69138b3f607384a22e291b4d0af3b1bd1b237.tar.bz2 | |
Oooopsss.....tab and space mismatch corrected.
Diffstat (limited to 'Lib/test/test_linuxaudiodev.py')
| -rw-r--r-- | Lib/test/test_linuxaudiodev.py | 4 |
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) |
