mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
strip whitespace from Ergo hashed password output (#198)
Removes the need for some special-casing in `ergo genpasswd`
This commit is contained in:
committed by
GitHub
parent
6edf4e27f1
commit
3b7f81e22c
@ -126,7 +126,7 @@ def hash_password(password: Union[str, bytes]) -> str:
|
||||
["ergo", "genpasswd"], stdin=subprocess.PIPE, stdout=subprocess.PIPE
|
||||
)
|
||||
out, _ = p.communicate(input_)
|
||||
return out.decode("utf-8")
|
||||
return out.decode("utf-8").strip()
|
||||
|
||||
|
||||
class ErgoController(BaseServerController, DirectoryBasedController):
|
||||
|
Reference in New Issue
Block a user