Skip to content

Commit 24d3f0b

Browse files
JasperB-TeamBluedupondje
authored andcommitted
core: use ConfigParser instead of SafeConfigParser
The SafeConfigParser class has been renamed to ConfigParser in Python 3.2. Using ConfigParser directly instead. Signed-off-by: Jasper Berton <jasper.berton@team.blue>
1 parent de944c7 commit 24d3f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/gr-he-common/core/ha_notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _customization(self):
116116
ohostedcons.Const.HA_NOTIF_SMTP_DEST_EMAILS: (
117117
ohostedcons.NotificationsEnv.DEFAULT_DEST_EMAIL),
118118
}
119-
self._cfg = configparser.SafeConfigParser()
119+
self._cfg = configparser.ConfigParser()
120120
self._cfg.add_section('email')
121121

122122
interactions = (

0 commit comments

Comments
 (0)