We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109459a commit 080ed97Copy full SHA for 080ed97
1 file changed
process_tracker/utilities/settings.py
@@ -40,7 +40,10 @@ def __init__(self, config_location=None):
40
else:
41
self.config_path = config_location
42
43
- if ".ini" not in self.config_path:
+ if (
44
+ "process_tracker_config.ini" not in self.config_path
45
+ and ".ini" not in self.config_path
46
+ ):
47
self.logger.debug(
48
"process_tracker_config.ini not present. Appending to %s"
49
% self.config_path
@@ -56,7 +59,7 @@ def __init__(self, config_location=None):
56
59
self.logger.debug("Config file is now %s" % self.config_file)
57
60
58
61
- "process_tracker config file present in path. Setting config_path to config_file."
62
+ "process_tracker_config.ini present. Setting config_path to config_file."
63
)
64
self.config_file = self.config_path
65
0 commit comments