Mercurial > moin > 1.9
changeset 2737:87c2948f5373
fix typo in last changeset
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Mon, 20 Aug 2007 01:19:13 +0200 |
parents | 2ffae6c847fd |
children | 79a147284dde |
files | MoinMoin/action/AttachFile.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/action/AttachFile.py Mon Aug 20 01:18:22 2007 +0200 +++ b/MoinMoin/action/AttachFile.py Mon Aug 20 01:19:13 2007 +0200 @@ -995,7 +995,7 @@ label = _('Download') url = getAttachUrl(pagename, filename, request, escaped=1, do='get') timestamp = htdocs_access(request) and "?%s" % time.time() or '' - request.write('<a href="%s%s">%s<a><br><br>' % (url, timestamp, label)) + request.write('<a href="%s%s">%s</a><br><br>' % (url, timestamp, label)) mt = wikiutil.MimeType(filename=filename) if mt.major == 'image':