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 7a33ddf commit b4eff0bCopy full SHA for b4eff0b
atlassian/VERSION
@@ -1 +1 @@
1
-2.5.0
+2.6.0
atlassian/utils.py
@@ -332,5 +332,8 @@ def parse_cookie_file(cookie_file):
332
for line in fp:
333
if not re.match(r"^(#|$)", line):
334
line_fields = line.strip().split("\t")
335
- cookies[line_fields[5]] = line_fields[6]
+ try:
336
+ cookies[line_fields[5]] = line_fields[6]
337
+ except IndexError as e:
338
+ log.error(e)
339
return cookies
0 commit comments