Skip to content

Commit

Permalink
Force manual_type to upper
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Dec 7, 2024
1 parent 32185ac commit 662cfbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def parse(self, args, meta):
if value not in (None, []):
if isinstance(value, list):
value2 = self.list_to_string(value)
if key == 'type':
meta[key] = value2.upper().replace('-', '')
if key == 'manual_type':
meta['manual_type'] = value2.upper().replace('-', '')
elif key == 'tag':
meta[key] = f"-{value2}"
elif key == 'screens':
Expand Down

0 comments on commit 662cfbe

Please sign in to comment.