From cc0d1eaaea40dc9d784c6974be1ce631a2087c11 Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Sat, 28 May 2016 17:31:46 -0400
Subject: [PATCH] Refs #22634 -- Removed unneeded app_label in custom session
 engine example.

---
 docs/topics/http/sessions.txt | 3 ---
 1 file changed, 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