Skip to content

Commit

Permalink
really fix cookie test
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Dec 14, 2023
1 parent 5a82de9 commit 2c553c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jiten/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
... return sorted( (c.name, c.value) for c in client.cookie_jar )
... else:
... cookies = [ client.get_cookie(k) for k in PREFS ]
... return sorted( (c.decoded_key, c.decoded_value) for c in cookies )
... return sorted( (c.key, c.value) for c in cookies if c is not None )
>>> cookies()
[]
Expand Down

0 comments on commit 2c553c5

Please sign in to comment.