Browse Source

Refs #32366 -- Avoided use of datetime.utcnow() in the documentation.

Nick Pope 3 years ago
parent
commit
69ffb1acf3
1 changed files with 1 additions and 2 deletions
  1. 1 2
      docs/topics/i18n/timezones.txt

+ 1 - 2
docs/topics/i18n/timezones.txt

@@ -535,10 +535,9 @@ Troubleshooting
 
    Let's reproduce this error by comparing a naive and an aware datetime::
 
-       >>> import datetime
        >>> from django.utils import timezone
-       >>> naive = datetime.datetime.utcnow()
        >>> aware = timezone.now()
+       >>> naive = timezone.make_naive(aware)
        >>> naive == aware
        Traceback (most recent call last):
        ...