Skip to content

Commit 0e94a1d

Browse files
authored
Add missing comma to code sample
1 parent 90d0795 commit 0e94a1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Named place-holders use the ``%(name)s`` form:
179179
"""
180180
INSERT INTO users (name, credits, user_id, username)
181181
VALUES (%(name)s, %(credits)s, %(user_id)s, %(name)s)
182-
"""
182+
""",
183183
{'name': "John O'Reilly", 'credits': 42, 'user_id': uuid.uuid1()}
184184
)
185185

0 commit comments

Comments
 (0)