diff options
| author | Daniele Procida <daniele@vurt.org> | 2014-06-15 13:11:36 +0200 |
|---|---|---|
| committer | Daniele Procida <daniele@vurt.org> | 2014-06-15 13:11:36 +0200 |
| commit | c755c8daa2e05dcf21d4a1b47625fba1e72d7109 (patch) | |
| tree | 502b980c2f1680d127a4237c6d58901a22324682 | |
| parent | dd57b89fcb8f009fc73f16efea9539e5888eb59d (diff) | |
| parent | 7a1f8414c3b71b6af03e5be9f5f8db115551c410 (diff) | |
Merge pull request #2810 from magrinidiego/ticket_22842_tutorial_test
Fixed #22842
| -rw-r--r-- | docs/intro/tutorial05.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt index 5f879c56a9..a2b1ba1f0f 100644 --- a/docs/intro/tutorial05.txt +++ b/docs/intro/tutorial05.txt @@ -246,7 +246,7 @@ past: def was_published_recently(self): now = timezone.now() - return now - datetime.timedelta(days=1) <= self.pub_date < now + return now - datetime.timedelta(days=1) <= self.pub_date <= now and run the test again:: |
