We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b186f64 commit cef5a7cCopy full SHA for cef5a7c
pysuez/client.py
@@ -50,7 +50,7 @@ def _get_token(self):
50
headers['Cookie'] += "; "
51
headers['Cookie'] += key + "=" + response.cookies[key]
52
53
- phrase = re.compile('_csrf_token" value="(.*)" />')
+ phrase = re.compile('_csrf_token" value="(.*)"/>')
54
result = phrase.search(response.content.decode('utf-8'))
55
self._token = result.group(1)
56
self._headers = headers
0 commit comments