diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index 24b9ef4..228e5ad 100644
a
|
b
|
Here's a typical usage example::
|
454 | 454 | Using sessions out of views |
455 | 455 | =========================== |
456 | 456 | |
| 457 | .. note:: |
| 458 | |
| 459 | The examples in this section import the ``SessionStore`` object directly from |
| 460 | the ``django.contrib.sessions.backends.db`` backend. In your own code, you |
| 461 | should consider importing ``SessionStore`` from the session engine designated |
| 462 | by :setting:`SESSION_ENGINE`, as below: |
| 463 | |
| 464 | >>> from importlib import import_module |
| 465 | >>> from django.conf import settings |
| 466 | >>> SessionStore = import_module(settings.SESSION_ENGINE).SessionStore |
| 467 | |
457 | 468 | An API is available to manipulate session data outside of a view:: |
458 | 469 | |
459 | 470 | >>> from django.contrib.sessions.backends.db import SessionStore |