From a09c058918f85949fd4c003e7ae62869f4559bd3 Mon Sep 17 00:00:00 2001 From: Frank Wiles Date: Thu, 29 Sep 2016 11:06:52 -0500 Subject: [PATCH] Fixed import typos in the docs. --- AUTHORS | 1 + docs/ref/request-response.txt | 2 +- docs/topics/i18n/timezones.txt | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index e31e67c943..26f0362522 100644 --- a/AUTHORS +++ b/AUTHORS @@ -253,6 +253,7 @@ answer newbie questions, and generally made Django that much better: Francisco Albarran Cristobal Frank Tegtmeyer Frank Wierzbicki + Frank Wiles FrantiĊĦek Malina Fraser Nevett Gabriel Grant diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 3ed4e98a35..70e6005e8e 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -252,7 +252,7 @@ Methods behind multiple proxies. One solution is to use middleware to rewrite the proxy headers, as in the following example:: - from django.django.utils.deprecation import MiddlewareMixin + from django.utils.deprecation import MiddlewareMixin class MultipleProxyMiddleware(MiddlewareMixin): FORWARDED_FOR_FIELDS = [ diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt index e553717e97..8cf3c1325b 100644 --- a/docs/topics/i18n/timezones.txt +++ b/docs/topics/i18n/timezones.txt @@ -178,7 +178,7 @@ Add the following middleware to :setting:`MIDDLEWARE`:: import pytz from django.utils import timezone - from django.django.utils.deprecation import MiddlewareMixin + from django.utils.deprecation import MiddlewareMixin class TimezoneMiddleware(MiddlewareMixin): def process_request(self, request):