diff options
| author | Collin Anderson <collin@onetencommunications.com> | 2014-08-01 21:32:53 -0400 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2014-08-02 10:17:45 +0200 |
| commit | e075d2e66baae98c5b5c06bff384665ab50e0223 (patch) | |
| tree | bb6b7d2f1a5e87726313a0d6d357713d920c7ccd /docs/intro/tutorial01.txt | |
| parent | 8f9d6e83a005901bc2a368a28017ee52a8c081f8 (diff) | |
Fixed #23148 -- Minor tweaks in tutorial code samples
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index be35254adb..b99adbb7f6 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -704,8 +704,11 @@ demonstration: :filename: polls/models.py import datetime + + from django.db import models from django.utils import timezone - # ... + + class Question(models.Model): # ... def was_published_recently(self): |
