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