diff options
| author | Tim Graham <timograham@gmail.com> | 2018-11-09 19:49:06 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-11-09 19:50:24 -0500 |
| commit | 8bc244bd576b0f779e29d62d19fbbdee1c4d7e39 (patch) | |
| tree | 08a73067f0b3be9fc5781652b53eb766bd602305 | |
| parent | 5d0de5852aebca25834848ec073dedd123d1d77a (diff) | |
[2.1.x] Fixed #29941 -- Fixed missing variable in docs/ref/contrib/contenttypes.txt.
Regression in b47552b445547e60cc89213f79e02333cb63f270.
Backport of 0b98e8fdad48a33aa34cc84d9bf0c3cd41c56ec6 from master.
| -rw-r--r-- | docs/ref/contrib/contenttypes.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index e01001baf7..8e6c7cab82 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -124,7 +124,8 @@ For example, we could look up the :class:`~django.contrib.auth.models.User` model:: >>> from django.contrib.contenttypes.models import ContentType - >>> ContentType.objects.get(app_label="auth", model="user") + >>> user_type = ContentType.objects.get(app_label='auth', model='user') + >>> user_type <ContentType: user> And then use it to query for a particular |
