diff options
| author | 2018-10-10 14:27:07 +0100 | |
|---|---|---|
| committer | 2018-10-10 14:27:07 +0100 | |
| commit | 796c3832b6370267f03d662396996d5b193e1ac9 (patch) | |
| tree | 1daa96827e47463738f0152873ce2cf3856be872 /modules | |
| parent | Use signal.alarm to Deadline utils.http.get_url and throw useful exceptions (diff) | |
| signature | ||
We're supposed to support passwords with spaces!
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/permissions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/permissions.py b/modules/permissions.py index a43741c1..8a6c804b 100644 --- a/modules/permissions.py +++ b/modules/permissions.py @@ -95,7 +95,7 @@ class Module(ModuleManager.BaseModule): hash, salt = self._get_hash(event["server"], event["user"].nickname) if not hash and not salt: - password = event["args_split"][0] + password = event["args"] hash, salt = self._make_hash(password) event["user"].set_setting("authentication", [hash, salt]) self._identified(event["server"], event["user"], |
