summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-09-08 14:05:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-09-08 14:05:10 (GMT)
commitaf57f6065f2131dad699667c11fdc9520a84986b (patch)
tree114b55bddd6db7ec6e969d24ca945b1e54684c20
parent6d75567238fe441a88a5dde9c61f489058b6c1ee (diff)
downloadcpython-af57f6065f2131dad699667c11fdc9520a84986b.zip
cpython-af57f6065f2131dad699667c11fdc9520a84986b.tar.gz
cpython-af57f6065f2131dad699667c11fdc9520a84986b.tar.bz2
Fix typo in example
-rw-r--r--Doc/lib/sqlite3/executescript.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/sqlite3/executescript.py b/Doc/lib/sqlite3/executescript.py
index 0795b47..7e53581 100644
--- a/Doc/lib/sqlite3/executescript.py
+++ b/Doc/lib/sqlite3/executescript.py
@@ -17,7 +17,7 @@ cur.executescript("""
insert into book(title, author, published)
values (
- 'Dirk Gently''s Holistic Detective Agency
+ 'Dirk Gently''s Holistic Detective Agency',
'Douglas Adams',
1987
);