Commit 582b08cc authored by Andreas Jung's avatar Andreas Jung

typo fix

parent 562a4093
......@@ -937,8 +937,8 @@ class DocumentClass:
return None
## Some constants to make the doc_href() regex easier to read.
_DQUOTEDTEXT = r'("[%s0-9\n%s]+")' % (letters,punctuation) ## double quoted text
_URL_AND_PUNC = r'([%s0-9_\@%s]+)' % (letters,punctuation)
_DQUOTEDTEXT = r'("[%s0-9\n%s]+")' % (letters,punctuations) ## double quoted text
_URL_AND_PUNC = r'([%s0-9_\@%s]+)' % (letters,punctuations)
_SPACES = r'(\s*)'
def doc_href(self, s,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment