refactor os.environ to pathlib #1
|
@ -14,9 +14,8 @@ class Config:
|
||||||
self.content = None
|
self.content = None
|
||||||
|
|
||||||
# select config file
|
# select config file
|
||||||
if Path.exists(Path("config.yml")):
|
self.conf_file = Path("config.yml")
|
||||||
self.conf_file = Path("config.yml")
|
if not Path.exists(self.conf_file):
|
||||||
else:
|
|
||||||
self.conf_file = Path("/etc/ejabberd-metrics.yml")
|
self.conf_file = Path("/etc/ejabberd-metrics.yml")
|
||||||
|
|
||||||
# read config file
|
# read config file
|
||||||
|
|
Loading…
Reference in New Issue