We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 795b5b3 commit e80a159Copy full SHA for e80a159
roundup/cgi/templating.py
@@ -736,7 +736,7 @@ def __cmp__(self, other):
736
class StringHTMLProperty(HTMLProperty):
737
url_re = re.compile(r'\w{3,6}://\S+')
738
email_re = re.compile(r'\w+@[\w\.\-]+')
739
- designator_re = re.compile(r'([a-z_]+)([\d+])')
+ designator_re = re.compile(r'([a-z_]+)(\d+)')
740
def _url_repl(self, match):
741
s = match.group(0)
742
return '<a href="%s">%s</a>'%(s, s)
0 commit comments