Skip to content

Commit

Permalink
Use separator for namespacing of datastore key. Fixes #87
Browse files Browse the repository at this point in the history
  • Loading branch information
ntoll committed May 29, 2024
1 parent a0bca35 commit a1fafc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/invent/datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def _namespace_key(self, key):
"""
Convenience method to create a properly namespaced key.
"""
return f"{self.namespace}{key}"
return f"{self.namespace}-{key}"

def __len__(self):
"""
Expand Down

0 comments on commit a1fafc0

Please sign in to comment.