diff options
Diffstat (limited to 'Lib/test/test_cl.py')
-rwxr-xr-x | Lib/test/test_cl.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_cl.py b/Lib/test/test_cl.py index f32efa6..60fbc43 100755 --- a/Lib/test/test_cl.py +++ b/Lib/test/test_cl.py @@ -69,10 +69,10 @@ clattrs = ['ADDED_ALGORITHM_ERROR', 'ALAW', 'ALGORITHM_ID', def main(): # touch all the attributes of al without doing anything if verbose: - print 'Touching cl module attributes...' + print 'Touching cl module attributes...' for attr in clattrs: - if verbose: - print 'touching: ', attr - getattr(cl, attr) + if verbose: + print 'touching: ', attr + getattr(cl, attr) main() |