Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion onyo/lib/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ def get_faux_serials(self,
if num < 1:
raise ValueError('The number of faux serial numbers must be >= 1.')

alphanum = string.ascii_lowercase + string.digits
alphanum = string.ascii_uppercase + string.digits
faux_serials = set()
# TODO: This split actually puts the entire filename in the set if there's no "faux".
repo_faux_serials = {str(x.name).split('faux')[-1] for x in self.repo.asset_paths}
Expand Down
Loading