Skip to content

Commit d605fec

Browse files
Website, Issues: local_replace.py another hg fix. post string needs to be after the closing tag.
1 parent 2c8ece1 commit d605fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/issues/extensions/local_replace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
(re.compile('\#(?P<ws>\s*)(?P<id>\d+)'),
66
"<a href='issue\g<id>'>#\g<ws>\g<id></a>" ),
77
(re.compile('(?P<prews>^|\s+)(?P<revstr>(revision|rev|r)\s?)(?P<revision>[\da-fA-F]+)(?P<post>\W+|$)'),
8-
"\g<prews><a href='http://sourceforge.net/p/roundup/code/ci/\g<revision>'>\g<revstr>\g<revision>\g<post></a>"),
8+
"\g<prews><a href='http://sourceforge.net/p/roundup/code/ci/\g<revision>'>\g<revstr>\g<revision></a>\g<post>"),
99
]
1010

1111
def local_replace(message):

0 commit comments

Comments
 (0)