Skip to content

Commit 189a905

Browse files
committed
Replace NotImplemented with NotImplementedError
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent 6c7cb0e commit 189a905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/httpbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def use_http_uri(message, typ, destination="", relay_state=""):
329329
"url": "%s?%s" % (destination, query)
330330
}
331331
else:
332-
raise NotImplemented
332+
raise NotImplementedError
333333

334334
return info
335335

0 commit comments

Comments
 (0)