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:32 -0400 |
| commit | 052f8499b9953e159e5b94c9afa2f243aa88ae39 (patch) | |
| tree | 264570bf5297c99c825c7ed0f276223aa65f808c | |
| parent | 0f1d5aef9d55ddb1399537b3f5178508938a4714 (diff) | |
[1.9.x] Refs #22634 -- Removed unneeded app_label in custom session engine example.
Backport of cc0d1eaaea40dc9d784c6974be1ce631a2087c11 from master
| -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 b72ce2f0d0..c74e35399d 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -817,9 +817,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 |
