From 0e94a1d1396366179281a069d7afbecdbad16a43 Mon Sep 17 00:00:00 2001 From: Matt Stibbs Date: Wed, 20 Jul 2016 09:18:46 +0100 Subject: [PATCH] Add missing comma to code sample --- docs/getting_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 2d9c7ea4..c7cbc259 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -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()} )