summaryrefslogtreecommitdiff
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-10-19 10:39:35 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2011-10-19 10:39:35 +0300
commit1e87da16eac24f6e0fb6908906ab6400ce583fa0 (patch)
treed992030c489c74b4f385314d3fba2d1dbb675cf6 /Doc/library/sqlite3.rst
parent7a15390f83c57283b44163c33bb4a80fd453526b (diff)
downloadcpython-git-1e87da16eac24f6e0fb6908906ab6400ce583fa0.tar.gz
Remove duplication.
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 3ef108c00c..50a036fb64 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -240,7 +240,7 @@ Connection Objects
.. method:: Connection.commit()
This method commits the current transaction. If you don't call this method,
- anything you did since the last call to ``commit()`` is not visible from from
+ anything you did since the last call to ``commit()`` is not visible from
other database connections. If you wonder why you don't see the data you've
written to the database, please check you didn't forget to call this method.