diff options
| author | Anton Samarchyan <anton.samarchyan@savoirfairelinux.com> | 2017-01-25 14:02:33 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-02-21 11:58:42 -0500 |
| commit | 5a6f70b4281817656db2f36c5919036d38fcce7f (patch) | |
| tree | 0fa649e905d960b54c5a65d80be23e42f900c23d /django/core/cache/backends/memcached.py | |
| parent | 3eb679a86956d9eedf24492f0002de002f7180f5 (diff) | |
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Diffstat (limited to 'django/core/cache/backends/memcached.py')
| -rw-r--r-- | django/core/cache/backends/memcached.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/cache/backends/memcached.py b/django/core/cache/backends/memcached.py index 8f87f487bf..6e8211bdff 100644 --- a/django/core/cache/backends/memcached.py +++ b/django/core/cache/backends/memcached.py @@ -30,7 +30,7 @@ class BaseMemcachedCache(BaseCache): @property def _cache(self): """ - Implements transparent thread-safe access to a memcached client. + Implement transparent thread-safe access to a memcached client. """ if getattr(self, '_client', None) is None: self._client = self._lib.Client(self._servers, **self._options) |
