﻿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
34663	Documentation typo in using Argon2 with Django.	HeartthrobRob	nobody	"""Using Argon2 with Django"" section lists the command to install argon-2 (step 1) as {{{python -m pip install django[argon2]}}}. If this is run as written, it will produce the following error: {{{no matches found: django[argon2]}}}.

A small formatting change is required to run successfully. the package should be nested in quotation marks instead, so it reads: {{{python -m pip install 'django[argon2]'}}}
This is because the zsh shell uses square brackets for globbing/pattern matching, and they need to be escaped if they're part of an argument.

References: 
1. Django docs: https://docs.djangoproject.com/en/4.2/topics/auth/passwords/#using-argon2-with-django
2. Solution outline: https://stackoverflow.com/a/30539963/11790080
"	Cleanup/optimization	closed	Documentation	4.2	Normal	invalid			Unreviewed	0	0	0	0	1	0
