summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial02.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-08-04 05:57:11 -0400
committerTim Graham <timograham@gmail.com>2013-08-04 05:57:11 -0400
commitb278f7478d37d3620e5addf7cc2070bc38c10871 (patch)
tree22a836ed1afadba108862b3d05bad7a75a9e91e3 /docs/intro/tutorial02.txt
parent784377544e01322b0d09e5cf4e8f6dda159df854 (diff)
Fixed #20858 -- Removed erroneous import in tutorial 2.
Thanks AtomicSpark.
Diffstat (limited to 'docs/intro/tutorial02.txt')
-rw-r--r--docs/intro/tutorial02.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index dd3e86d8ae..c5c5f8f288 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -352,12 +352,6 @@ representation of the output.
You can improve that by giving that method (in :file:`polls/models.py`) a few
attributes, as follows::
- import datetime
- from django.utils import timezone
- from django.db import models
-
- from polls.models import Poll
-
class Poll(models.Model):
# ...
def was_published_recently(self):