Fix example SECRET_KEY generation code
Removes the extra `)` in: `print(secrets.token_hex())`
This commit is contained in:
parent
ded812b0cd
commit
225ff3ea6c
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ The following configuration values are used internally by Flask:
|
|||
application. It should be a long random ``bytes`` or ``str``. For
|
||||
example, copy the output of this to your config::
|
||||
|
||||
$ python -c 'import secrets; print(secrets.token_hex()))'
|
||||
$ python -c 'import secrets; print(secrets.token_hex())'
|
||||
'192b9bdd22ab9ed4d12e236c78afcb9a393ec15f71bbf5dc987d54727823bcbf'
|
||||
|
||||
**Do not reveal the secret key when posting questions or committing code.**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue