mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-25 21:41:27 +00:00
Fixed syntac issues
This commit is contained in:
parent
a1292232a7
commit
ef79004f19
2
main.py
2
main.py
|
@ -72,7 +72,7 @@ def upgradeSystem():
|
|||
def createUser():
|
||||
|
||||
rawPassword = request.headers.get("X-Password")
|
||||
passwordHashProcessDescriptor = subprocess.Popen(["mkpasswd -m sha-512 \"" + rawPassword + "\"", shell=True, stdout=subprocess.PIPE, stderr=STDOUT)
|
||||
passwordHashProcessDescriptor = subprocess.Popen(["mkpasswd -m sha-512 " + rawPassword, shell=True, stdout=subprocess.PIPE, stderr=STDOUT)
|
||||
hashedPassword = passwordHashProcessDescriptor.communicate()[0]
|
||||
hashedPassword = hashedPassword.decode("ascii")
|
||||
|
||||
|
|
Loading…
Reference in a new issue