Skip to content

Commit

Permalink
Merge pull request #587 from jaraco/fix-regression
Browse files Browse the repository at this point in the history
Fix regression which made libsecret backend unusable in v23.8.0
  • Loading branch information
jaraco committed Aug 7, 2022
2 parents 0ed196d + 4b2d9e5 commit f20bdd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,8 @@
v23.8.1
-------

* #587: Fix regression in ``libsecret``.

v23.8.0
-------

Expand Down
2 changes: 1 addition & 1 deletion keyring/backend.py
Expand Up @@ -250,7 +250,7 @@ def _query(self, service, username=None, **base):
scheme['username']: username,
scheme['service']: service,
}
if username
if username is not None
else {
scheme['service']: service,
},
Expand Down

0 comments on commit f20bdd9

Please sign in to comment.