Add missing comma to code sample

This commit is contained in:
Matt Stibbs
2016-07-20 09:18:46 +01:00
committed by GitHub
parent 90d0795449
commit 0e94a1d139

View File

@@ -179,7 +179,7 @@ Named place-holders use the ``%(name)s`` form:
"""
INSERT INTO users (name, credits, user_id, username)
VALUES (%(name)s, %(credits)s, %(user_id)s, %(name)s)
"""
""",
{'name': "John O'Reilly", 'credits': 42, 'user_id': uuid.uuid1()}
)