# # patch "ChangeLog" # from [e657344b9be909c2b28d2b9e0333b0043e0fd146] # to [a77d2c49bd2d7868acdd6ad6c459f7b244863f9f] # # patch "contrib/ciabot_monotone.py" # from [7c3c9404806ed0572e888ad12a206c7438884ec1] # to [b4a5f12f9ad8b296ed6849f643f6ede389cec571] # ======================================================================== --- ChangeLog e657344b9be909c2b28d2b9e0333b0043e0fd146 +++ ChangeLog a77d2c49bd2d7868acdd6ad6c459f7b244863f9f @@ -1,3 +1,8 @@ +2005-08-22 Nathaniel Smith + + * contrib/ciabot_monotone.py (send_change_for): Handle author + names with spaces in. + 2005-08-22 Matt Johnston * HACKING: change the vim modeline to something that seems to work ======================================================================== --- contrib/ciabot_monotone.py 7c3c9404806ed0572e888ad12a206c7438884ec1 +++ contrib/ciabot_monotone.py b4a5f12f9ad8b296ed6849f643f6ede389cec571 @@ -216,7 +216,7 @@ pieces = log.split("\n") for p in pieces: if p.startswith("Author:"): - author = p.split()[1] + author = p.split(None, 1)[1].strip() if p.startswith("Branch:"): branch = p.split()[1] if p.startswith("ChangeLog:"):