diff options
| author | Tim Graham <timograham@gmail.com> | 2016-05-28 17:31:46 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-28 17:33:28 -0400 |
| commit | 23e106bb721b3f4a41e40d9d98426e4cb2a12068 (patch) | |
| tree | a404c0656d884029e28269bc9e67a6a292aca5d9 /docs | |
| parent | e0a4d4477cfc93b2dc06dd212778cb4eef92fc59 (diff) | |
[1.10.x] Refs #22634 -- Removed unneeded app_label in custom session engine example.
Backport of cc0d1eaaea40dc9d784c6974be1ce631a2087c11 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/http/sessions.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt index 1a948397ae..0bd43c632e 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -811,9 +811,6 @@ to query the database for all active sessions for an account):: class CustomSession(AbstractBaseSession): account_id = models.IntegerField(null=True, db_index=True) - class Meta: - app_label = 'mysessions' - @classmethod def get_session_store_class(cls): return SessionStore |
