Run 2to3's print fixer over some places that had been missed.

This commit is contained in:
Collin Winter 2007-08-30 18:39:28 +00:00
parent 716c3ac40c
commit e7bf59f500
51 changed files with 253 additions and 253 deletions

View file

@ -8,8 +8,8 @@ filespec = macfs.FSSpec('my disk image.img')
try:
objref = talker.create('my disk image', saving_as=filespec, leave_image_mounted=1)
except Disk_Copy.Error as arg:
print "ERROR: my disk image:", arg
print("ERROR: my disk image:", arg)
else:
print 'objref=', objref
print 'Type return to exit-'
print('objref=', objref)
print('Type return to exit-')
sys.stdin.readline()