Skip to content

Commit

Permalink
summary: Preserve case when parsing with configparser
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt authored and barthalion committed Sep 25, 2024
1 parent 5a8dfa6 commit e47a52c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/app/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def get_parent_id(app_id: str):

def parse_metadata(ini: str):
parser = configParserCustom.ConfigParserMultiOpt()
parser.optionxform = lambda option: option
parser.read_string(ini)

if "Application" not in parser:
Expand Down

0 comments on commit e47a52c

Please sign in to comment.