Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update simple_tableprinter.py
  • Loading branch information
berkerpeksag authored May 19, 2021
commit 64555247abec6144e794c3b94cf229aca472e3ec
2 changes: 1 addition & 1 deletion Doc/includes/sqlite3/simple_tableprinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

con = sqlite3.connect("mydb")
cur = con.cursor()
cur.execute(f"select * from lang order by name, first_appeared")
cur.execute("select * from lang order by name, first_appeared")

# Print a header.
for fieldDesc in cur.description:
Expand Down