* Update postgresql_user.py md5sum generates output with hypen. Something like the following ``` $ echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum)" md5d011966da94d776cf59bf6dbde240e5d - ``` We need to remove hyphen from the output. Also the command by itself is incorrect ``` echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum") ``` double quotes must be after right parenthesis ``` echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum)" ``` +label: docsite_pr * Update postgresql_user.py Add curly braces |
||
---|---|---|
.. | ||
__init__.py | ||
postgresql_db.py | ||
postgresql_ext.py | ||
postgresql_lang.py | ||
postgresql_privs.py | ||
postgresql_schema.py | ||
postgresql_user.py |