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)