From 60a8fb3e35ca46cf6d890a90e9f4a7f090e099f9 Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 5 Apr 2023 21:52:24 +0200 Subject: Configuration files now use .ini extension --- waterspout_radar/_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'waterspout_radar/_config.py') diff --git a/waterspout_radar/_config.py b/waterspout_radar/_config.py index 222f023..1e740ae 100644 --- a/waterspout_radar/_config.py +++ b/waterspout_radar/_config.py @@ -35,7 +35,7 @@ class ConfigError(Exception): def effective_pathname(pathname: str = None) -> str: "Pathname of the configuration file based on optional *pathname*, environment, and default." - return pathname or os.getenv("WATERSPOUT_RADAR_CONFIG") or "waterspout-radar.conf" + return pathname or os.getenv("WATERSPOUT_RADAR_CONFIG") or "waterspout-radar.ini" def load(pathname: str) -> Config: -- cgit v1.1