Skip to content

Commit

Permalink
fix: referencesf expects bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Apr 2, 2024
1 parent a6dc5ac commit 920ee85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relstorage_packer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ def get_references(state):
"""Return the set of OIDs the given state refers to."""
refs = set()
if state:
for oid in referencesf(str(state)):
for oid in referencesf(state):
refs.add(u64(oid))
return refs

0 comments on commit 920ee85

Please sign in to comment.