From 88b0cfa8ef5b30cb3b3df27e1b7dbfd34960bdab Mon Sep 17 00:00:00 2001 From: Jonas Wielicki Date: Wed, 29 Nov 2017 16:41:23 +0100 Subject: [PATCH] Fix missing .html in find-lcs.sh --- tools/find-lcs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/find-lcs.sh b/tools/find-lcs.sh index 6ef449b9..b0b98349 100755 --- a/tools/find-lcs.sh +++ b/tools/find-lcs.sh @@ -1,3 +1,3 @@ #!/bin/bash ( echo -ne ''; xpath -e '/xep-infos/xep[string(status)="Proposed"]' build/xeplist.xml 2>/dev/null | tr -d '\n'; echo -ne '' ) | python3 -c 'import lxml.etree, sys; tree = lxml.etree.fromstring(sys.stdin.read()) -for xep in tree: print("XEP-{number:04d} ({title}), LC ends: {enddate}; https://xmpp.org/extensions/xep-{number:04d}".format(number=int(xep.find("number").text), enddate=xep.find("lastcall").text, title=xep.find("title").text))' +for xep in tree: print("XEP-{number:04d} ({title}), LC ends: {enddate}; https://xmpp.org/extensions/xep-{number:04d}.html".format(number=int(xep.find("number").text), enddate=xep.find("lastcall").text, title=xep.find("title").text))'