This commit is contained in:
A. Jesse Jiryu Davis 2014-10-31 14:04:20 -04:00
parent d314b1f4fb
commit 936ee264cb
2 changed files with 3 additions and 6 deletions

View File

@ -139,8 +139,7 @@ class Database(common.BaseObject):
@property
def incoming_manipulators(self):
"""List all incoming SON manipulators
installed on this instance.
"""All incoming SON manipulators installed on this instance.
.. versionadded:: 2.0
"""
@ -149,8 +148,7 @@ class Database(common.BaseObject):
@property
def incoming_copying_manipulators(self):
"""List all incoming SON copying manipulators
installed on this instance.
"""All incoming SON copying manipulators installed on this instance.
.. versionadded:: 2.0
"""

View File

@ -27,8 +27,7 @@ class PyMongoError(Exception):
class ConnectionFailure(PyMongoError):
"""Raised when a connection to the database cannot be made or is lost.
"""
"""Raised when a connection to the database cannot be made or is lost."""
class AutoReconnect(ConnectionFailure):