Skip to content

Commit

Permalink
Merge pull request #178 from N4zroth/main
Browse files Browse the repository at this point in the history
Fix invalid escape exception on startup
  • Loading branch information
bohdan-s authored Oct 28, 2024
2 parents 170dc62 + ba64f70 commit fc389a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SunGather/sungather.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def main():
try:
if export.get('enabled', False):
export_load = importlib.import_module("exports." + export.get('name'))
logging.info(f"Loading Export: exports\{export.get('name')}")
logging.info(f"Loading Export: exports {export.get('name')}")
exports.append(getattr(export_load, "export_" + export.get('name'))())
retval = exports[-1].configure(export, inverter)
except Exception as err:
Expand Down

0 comments on commit fc389a5

Please sign in to comment.