Forgot a newline in HTML generator.

This commit is contained in:
tastytea 2020-11-15 21:18:16 +01:00
parent df45afe31b
commit e1683b889e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ void write_html(ostream &out, const vector<entry_type> &entries)
out << " <li><a href=\"" << screenshot << "\">"
<< screenshot << "</a></li>\n";
}
out << " </ul>";
out << " </ul>\n";
}
out << " </details>\n";
}