# HG changeset patch # User Benoit Boissinot # Date 2010-03-16 15:41:22 # Node ID 61c52fedbd45c0bc486179af93209d8d5d6fe4e3 # Parent 4eaf1b7464991ae06dff5240940fe1983e5535eb help: it's not necessary to escape quotes diff --git a/mercurial/help.py b/mercurial/help.py --- a/mercurial/help.py +++ b/mercurial/help.py @@ -25,7 +25,7 @@ def moduledoc(file): break start = line[:3] - if start == '\"\"\"' or start == "\'\'\'": + if start == '"""' or start == "'''": line = line[3:] while line: if line.rstrip().endswith(start):