summaryrefslogtreecommitdiff
path: root/waterspout_radar
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-04-05 21:52:24 +0200
committerAki <please@ignore.pl>2023-04-05 21:52:24 +0200
commit60a8fb3e35ca46cf6d890a90e9f4a7f090e099f9 (patch)
tree181932bd4b4d8e14f6b48c5e1948f9ffe87df1a0 /waterspout_radar
parentfab6199135d75c38f3cdc463884c618784c3655a (diff)
downloadwaterspout-radar-60a8fb3e35ca46cf6d890a90e9f4a7f090e099f9.zip
waterspout-radar-60a8fb3e35ca46cf6d890a90e9f4a7f090e099f9.tar.gz
waterspout-radar-60a8fb3e35ca46cf6d890a90e9f4a7f090e099f9.tar.bz2
Configuration files now use .ini extension
Diffstat (limited to 'waterspout_radar')
-rw-r--r--waterspout_radar/_config.py2
1 files changed, 1 insertions, 1 deletions
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: