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 9165802 commit a13b8daCopy full SHA for a13b8da
atlassian/utils.py
@@ -330,7 +330,7 @@ def parse_cookie_file(cookie_file):
330
cookies = {}
331
with open(cookie_file, "r") as fp:
332
for line in fp:
333
- if not re.match(r"^#", line):
+ if not re.match(r"^(#|$)", line):
334
line_fields = line.strip().split("\t")
335
cookies[line_fields[5]] = line_fields[6]
336
return cookies
0 commit comments