From 2169a4a182508d5efc6227ad026fa989c4070344 Mon Sep 17 00:00:00 2001 From: CAMEA Date: Tue, 29 Apr 2025 15:31:50 +0200 Subject: [PATCH] change config location to ~/.config/sehistory --- seinflux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seinflux.py b/seinflux.py index 2583ef5..027630e 100644 --- a/seinflux.py +++ b/seinflux.py @@ -29,7 +29,7 @@ class SEHistory(InfluxDBWrapper): self.instrument = instrument parser = ConfigParser() parser.optionxform = str - parser.read([Path('~/.sehistory').expanduser()]) + parser.read([Path('~/.config/sehistory').expanduser()]) section = parser[dbname] if dbname else parser[parser.sections()[0]] super().__init__(*(section[k] for k in ('uri', 'token', 'org', 'bucket')), access=access)