Print summary of newly created meet

This commit is contained in:
Peter J. Holzer 2025-01-27 21:35:55 +01:00
parent a211048920
commit ad68bd86d3
1 changed files with 4 additions and 0 deletions

View File

@ -48,3 +48,7 @@ for place in meet["places"]:
(place["name"], meet_id,)
)
db.commit()
csr.execute("select * from meet where id = %s", (meet_id,))
r = csr.fetchone()
print(r.id, r.key, r.title)