aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-24 09:04:42 +0000
committerGravatar jesopo2019-02-24 09:04:42 +0000
commitf3f6102dbc28a0df8789cf0130469110a800b7ae (patch)
tree8cff4af2f1269094b181dda23b9ff82aa28487ca
parentSend IRCBot.VERSION on a CTCP VERSION (ctcp.py) (diff)
signature
Don't duplicate `"other-error"` (sasl.scram)
-rw-r--r--modules/sasl/scram.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/sasl/scram.py b/modules/sasl/scram.py
index 03bc610a..f243d1e6 100644
--- a/modules/sasl/scram.py
+++ b/modules/sasl/scram.py
@@ -17,8 +17,7 @@ SCRAM_ERRORS = [
"unsupported-channel-binding-type",
"unknown-user",
"invalid-username-encoding", # invalid utf8 or bad SASLprep
- "no-resources",
- "other-error"
+ "no-resources"
]
def _scram_nonce() -> bytes: