Skip to content

Commit

Permalink
fix one get another
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Sep 17, 2024
1 parent ee5deca commit e850ebe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions git_fleximod/gitinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ def config_get_value(self, section, name):
def config_set_value(self, section, name, value):
if self._use_module:
with self.repo.config_writer() as writer:
if "." in section:
section = section.replace("."," \"")+'"'
writer.set_value(section, name, value)
writer.release() # Ensure changes are saved
else:
Expand Down

0 comments on commit e850ebe

Please sign in to comment.