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:32:37 -0400 |
| commit | cc0d1eaaea40dc9d784c6974be1ce631a2087c11 (patch) | |
| tree | fcd43319606cdd88acb9dc01735ee3383707ad0f /docs | |
| parent | 15a5755e7cca630c2a0dbbcba436621ccc437c21 (diff) | |
Refs #22634 -- Removed unneeded app_label in custom session engine example.
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 e819374e51..aa3a3cf704 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -800,9 +800,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 |
