﻿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
18104	python_markdown_deprecation incorrectly formed	Roy Smith	Claude Paroz	"In /contrib/markup/templatetags/markup.py, this code is incorrect:


{{{
            python_markdown_deprecation = ""The use of Python-Markdown ""
            ""< 2.1 in Django is deprecated; please update to the current version""
}}}


I suspect you were attempting to use string concatenation, but what you've got is two statements, one assigning a string, the next consisting of just a string.  This results in:


{{{
[...]/markup.py:83: DeprecationWarning: The use of Python-Markdown 
  warnings.warn(python_markdown_deprecation, DeprecationWarning)
}}}

"	Bug	closed	contrib.markup	1.4	Normal	fixed			Accepted	1	0	0	0	1	0
