removed wire_concern usage and cosmetics

This commit is contained in:
Matthieu Rigal
2015-05-07 19:34:31 +02:00
parent f97db93212
commit 794101691c
3 changed files with 15 additions and 13 deletions

View File

@@ -940,7 +940,7 @@ class BaseQuerySet(object):
.. deprecated:: Ignored with PyMongo 3+
"""
if IS_PYMONGO_3:
msg = ("snapshot is deprecated as it has no impact when using PyMongo 3+.")
msg = "snapshot is deprecated as it has no impact when using PyMongo 3+."
warnings.warn(msg, DeprecationWarning)
queryset = self.clone()
queryset._snapshot = enabled
@@ -966,7 +966,7 @@ class BaseQuerySet(object):
.. deprecated:: Ignored with PyMongo 3+
"""
if IS_PYMONGO_3:
msg = ("slave_okay is deprecated as it has no impact when using PyMongo 3+.")
msg = "slave_okay is deprecated as it has no impact when using PyMongo 3+."
warnings.warn(msg, DeprecationWarning)
queryset = self.clone()
queryset._slave_okay = enabled