We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de8571 commit acf6a34Copy full SHA for acf6a34
pypulse/Socket/request_handler.py
@@ -40,7 +40,8 @@ def do_POST(self):
40
temp_post_body = {}
41
for i in post_body.decode('utf-8').split('&'):
42
element = i.split('=')
43
- temp_post_body[element[0]] = element[1]
+ if len(element) == 2:
44
+ temp_post_body[element[0]] = element[1]
45
46
current_view = View.CallView(self.path)
47
0 commit comments