now the date prints as

January 2023
instead of with a specific date and time.
Makes it simpler in git not having change so
frequently.
	modified:   bugxml/readbugs.py
This commit is contained in:
David Anderson
2023-04-06 16:23:10 -07:00
parent 5ac919ea71
commit 8d08175af2

View File

@@ -280,7 +280,8 @@ def writeheader(file,headname):
write_line(file,l)
hl='<H2>%s</H2>'%(headname)
write_line(file,hl)
tm='</p>as of %s %s</p>'%(dt.strftime("%Y-%m-%d %H:%M "),mytz)
#tm='</p>as of %s %s</p>'%(dt.strftime("%Y-%m-%d %H:%M "),mytz)
tm='</p>as of %s</p>'%(dt.strftime("%B %Y"))
write_line(file,tm)
def generatehtml(list2,headname, name):