﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32700	Small indentation issue in part 5 of tutorial	Matthew Dean	nobody	"In the Create a test to expose the bug section, smaller windows format 

class QuestionModelTests(TestCase):

    def test_was_published_recently_with_future_question(self):
        """"""
        was_published_recently() returns False for questions whose pub_date
        is in the future.
        """"""
        time = timezone.now() + datetime.timedelta(days=30)
        future_question = Question(pub_date=time)
        self.assertIs(future_question.was_published_recently(), False)


in very confusing ways."	Cleanup/optimization	closed	Uncategorized	3.2	Normal	invalid			Unreviewed	0	0	0	0	0	0
