Skip to content

Commit

Permalink
Merge pull request #59 from jvhaarst/patch-1
Browse files Browse the repository at this point in the history
Allow % sign in password
  • Loading branch information
ZuinigeRijder authored Apr 2, 2024
2 parents 5c69357 + b447ab2 commit dc34701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
# == read monitor in monitor.cfg ===========================
parser = configparser.ConfigParser()
parser.read(get_filepath("monitor.cfg"))
monitor_settings = dict(parser.items("monitor"))
monitor_settings = dict(parser.items("monitor",raw=True))

REGION = monitor_settings["region"]
BRAND = monitor_settings["brand"]
Expand Down

0 comments on commit dc34701

Please sign in to comment.