mirror of https://github.com/django/django.git
Fixed typo in django/core/cache/backends/base.py docstring.
This commit is contained in:
parent
772eca0b02
commit
593829a5ab
|
@ -31,7 +31,7 @@ def default_key_func(key, key_prefix, version):
|
||||||
Default function to generate keys.
|
Default function to generate keys.
|
||||||
|
|
||||||
Construct the key used by all other methods. By default, prepend
|
Construct the key used by all other methods. By default, prepend
|
||||||
the `key_prefix'. KEY_FUNCTION can be used to specify an alternate
|
the `key_prefix`. KEY_FUNCTION can be used to specify an alternate
|
||||||
function with custom key making behavior.
|
function with custom key making behavior.
|
||||||
"""
|
"""
|
||||||
return '%s:%s:%s' % (key_prefix, version, key)
|
return '%s:%s:%s' % (key_prefix, version, key)
|
||||||
|
|
Loading…
Reference in New Issue