Skip to content

Commit

Permalink
fix configparser error with new teams url
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelMWS committed Oct 17, 2024
1 parent e0bb8d3 commit cae98be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prom2teams/app/configuration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import argparse
from configparser import RawConfigParser
import configparser
import logging.config

Expand Down Expand Up @@ -60,7 +61,7 @@ def _update_application_configuration(application, configuration):


def _config_provided(filepath):
config = configparser.ConfigParser()
config = RawConfigParser()
try:
with open(filepath) as f_prov:
config.read_file(f_prov)
Expand Down

0 comments on commit cae98be

Please sign in to comment.