# HG changeset patch # User catherine@Drou # Date 1266379697 18000 # Node ID 798c7f32a96042048d05a7879cd0da34f0aa2f72 # Parent 8a5bc9f5c28ea6b260ffdebcb241f18e8405be11 line spacing diff -r 8a5bc9f5c28e -r 798c7f32a960 docs/pycon2010/pirate8.py --- a/docs/pycon2010/pirate8.py Tue Feb 16 23:07:04 2010 -0500 +++ b/docs/pycon2010/pirate8.py Tue Feb 16 23:08:17 2010 -0500 @@ -45,7 +45,8 @@ separator = ', ' else: separator = ' ' - print('{0} and a bottle of {1}'.format(separator.join(chant), arg)) + chant = separator.join(chant) + print('{0} and a bottle of {1}'.format(chant, arg)) pirate = Pirate() pirate.cmdloop() \ No newline at end of file diff -r 8a5bc9f5c28e -r 798c7f32a960 docs/pycon2010/pycon2010.rst --- a/docs/pycon2010/pycon2010.rst Tue Feb 16 23:07:04 2010 -0500 +++ b/docs/pycon2010/pycon2010.rst Tue Feb 16 23:08:17 2010 -0500 @@ -275,6 +275,7 @@ separator = ', ' else: separator = ' ' - print('{0} and a bottle of {1}'.format(separator.join(chant), arg)) + chant = separator.join(chant) + print('{0} and a bottle of {1}'.format(chant, arg)) \ No newline at end of file