Skip to content

Commit

Permalink
[lfs] Do not remove comments from ini files
Browse files Browse the repository at this point in the history
Fixes #105
  • Loading branch information
derrod committed Oct 24, 2020
1 parent d95fd20 commit d842780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legendary/lfs/lgndry.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self):
# EGS metadata
self._game_metadata = dict()
# Config with game specific settings (e.g. start parameters, env variables)
self.config = configparser.ConfigParser()
self.config = configparser.ConfigParser(comment_prefixes='/', allow_no_value=True)
self.config.optionxform = str

# ensure folders exist.
Expand Down

0 comments on commit d842780

Please sign in to comment.