make-people-page: Remove stray trailing semicolon

Signed-off-by: Nils Philippsen <nils@redhat.com>
This commit is contained in:
Nils Philippsen 2021-03-31 15:09:02 +02:00 committed by nphilipp
parent d80642e913
commit 1567f4d587

View file

@ -195,7 +195,7 @@ page_output = page_jinja_template_obj.render(users=sorted(users.items()))
out_file = Path("/srv/people/site/index.html")
# get gid for web group
out_file_grp = grp.getgrnam("web").gr_gid;
out_file_grp = grp.getgrnam("web").gr_gid
with open(out_file, "w", encoding="utf-8") as handle:
handle.write(page_output)