Skip to content

Commit

Permalink
Fixed problem with temp_monitor config
Browse files Browse the repository at this point in the history
  • Loading branch information
zonoskar committed Apr 1, 2019
1 parent ae73f58 commit c27beba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions goodweConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ def __init__( self, configFile):
line = line[:line.find('#')]
line = line.replace(' ', '')
line = line.replace('=', '')
line = line.replace(':\\', ';')
line = line.replace(':', '')
line = line.replace('\'', '')
line = line.replace(';', ':\\')

if self.GOODWE_SYSTEM_ID in line:
self.goodwe_system_id = line.replace(self.GOODWE_SYSTEM_ID, '')
Expand Down

0 comments on commit c27beba

Please sign in to comment.