Skip to content

Commit cdca4af

Browse files
[3.12] gh-108550: Fix sqlite3 CLI regression from gh-108551 (GH-108618) (#108621)
gh-108550: Fix sqlite3 CLI regression from gh-108551 (GH-108618) (cherry picked from commit c884784) Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent c942fae commit cdca4af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/sqlite3/__main__.py

+1-1
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)