# HG changeset patch # User Steve Losh # Date 1255219008 14400 # Node ID 7cd4514b49f467a24aefe5ae947c26f9fbe1def7 # Parent 4bad4dc4dddc45848a04a68485466b750873d466 Die, copypasted triple single quotes, DIE. diff -r 4bad4dc4dddc -r 7cd4514b49f4 review/extension_ui.py --- a/review/extension_ui.py Sat Oct 10 19:54:18 2009 -0400 +++ b/review/extension_ui.py Sat Oct 10 19:56:48 2009 -0400 @@ -251,17 +251,17 @@ help.helptable += ( (['review-init', 'review-init'], ('Initializing code review for a repository'), - (r''' + (r""" - ''')), + """)), (['review-review', 'review-review'], ('Viewing code review data for changesets'), - (r''' + (r""" - ''')), + """)), (['review-comment', 'review-comment'], ('Adding code review comments for changesets'), - (r''' + (r""" hg review --comment -m MESSAGE [-r REV] [-l LINES] [FILE] If no revision is given, the current parent of the working directory @@ -283,10 +283,10 @@ hg review --comment -m 'This file should just be deleted.' script.py hg review --comment -m 'Trailing whitespace!' --lines 1,2,30 utils.py - ''')), + """)), (['review-signoff', 'review-signoff'], ('Adding code review signoffs for changesets'), - (r''' + (r""" hg review --signoff -m MESSAGE [--yes | --no] [-r REV] Sign off on a changeset. @@ -304,5 +304,5 @@ hg review --signoff --yes -m 'Thanks, this change looks good.' hg review --signoff --no -m 'This would break backwards compatibility!' - ''')), + """)), ) \ No newline at end of file