fix typos.

This commit is contained in:
Georg Brandl
2009-09-03 23:20:26 +02:00
parent 917669a39f
commit cad5598069

View File

@@ -443,7 +443,7 @@ def split_explicit_title(text):
"""Split role content into title and target, if given."""
match = explicit_title_re.match(text)
if match:
return True, m.group(1), m.group(2)
return True, match.group(1), match.group(2)
return False, text, text
# monkey-patch Node.traverse to get more speed