You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everywhere else, we use args = get_args with no destructuring. I guess we missed this servelet in that change and either nobody noticed or the endpoint is unused.
The text was updated successfully, but these errors were encountered:
Inside render_GET we call
get_args
and destructure the result to a 2-tuple:sydent/sydent/http/servlets/msisdnservlet.py
Line 131 in 567eb1a
get_args returns a dictionary, and has done since 687d774. The destructing will fail unless the dictionary contains two keys.
sydent/sydent/http/servlets/__init__.py
Lines 46 to 48 in a6fff7b
Everywhere else, we use
args = get_args
with no destructuring. I guess we missed this servelet in that change and either nobody noticed or the endpoint is unused.The text was updated successfully, but these errors were encountered: