Skip to content
Snippets Groups Projects
Commit d3c61ef9 authored by Amber Brown's avatar Amber Brown
Browse files

fix type error

parent c0332429
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ class PushersRemoveRestServlet(RestServlet): ...@@ -142,7 +142,7 @@ class PushersRemoveRestServlet(RestServlet):
To allow pusher to be delete by clicking a link (ie. GET request) To allow pusher to be delete by clicking a link (ie. GET request)
""" """
PATTERNS = client_path_patterns("/pushers/remove$") PATTERNS = client_path_patterns("/pushers/remove$")
SUCCESS_HTML = "<html><body>You have been unsubscribed</body><html>" SUCCESS_HTML = b"<html><body>You have been unsubscribed</body><html>"
def __init__(self, hs): def __init__(self, hs):
super(PushersRemoveRestServlet, self).__init__() super(PushersRemoveRestServlet, self).__init__()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment