From f615404f32260d84f1d925a21c39b350bced7200 2012-09-19 14:38:04 From: Thomas Kluyver Date: 2012-09-19 14:38:04 Subject: [PATCH] Update docstring for @catch_corrupt_db decorator --- diff --git a/IPython/core/history.py b/IPython/core/history.py index 7deb3bb..4fefacb 100644 --- a/IPython/core/history.py +++ b/IPython/core/history.py @@ -71,8 +71,8 @@ else: @decorator def catch_corrupt_db(f, self, *a, **kw): """A decorator which wraps HistoryAccessor method calls to catch errors from - a corrupt SQLite database, move the old database out of the way, create a - new one, and optionally retry the function. + a corrupt SQLite database, move the old database out of the way, and create + a new one. """ try: return f(self, *a, **kw)