diff --git a/AUTHORS b/AUTHORS index 7c1ed70c44..52aa5617a4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -251,6 +251,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 7102c877da..cfc794db6d 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -257,7 +257,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 8392d0c09f..be4665f95c 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):