Skip to content

Commit c884784

Browse files
pythongh-108550: Fix sqlite3 CLI regression from pythongh-108551 (python#108618)
1 parent 6eaddc1 commit c884784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/sqlite3/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ def main(*args):
124124

125125

126126
if __name__ == "__main__":
127-
main(sys.argv)
127+
main(sys.argv[1:])

0 commit comments

Comments
 (0)