summaryrefslogtreecommitdiff
path: root/Lib/test/test_cd.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_cd.py')
-rwxr-xr-xLib/test/test_cd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_cd.py b/Lib/test/test_cd.py
index d85621178a..217b38b5ed 100755
--- a/Lib/test/test_cd.py
+++ b/Lib/test/test_cd.py
@@ -17,10 +17,10 @@ cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYI
def main():
# touch all the attributes of cd without doing anything
if verbose:
- print 'Touching cd module attributes...'
+ print('Touching cd module attributes...')
for attr in cdattrs:
if verbose:
- print 'touching: ', attr
+ print('touching: ', attr)
getattr(cd, attr)
main()