diff --git a/CHANGELOG.md b/CHANGELOG.md index 681badee..6c021945 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to GCPy will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] - TBD +### Fixed +- Now use the proper default value for the `--weightsdir` argument to `gcpy/file_regrid.py` + ## [1.4.0] - 2023-11-20 ### Added - Added C2H2 and C2H4 to `emission_species.yml` diff --git a/gcpy/file_regrid.py b/gcpy/file_regrid.py index 79fa7942..474d7b7d 100644 --- a/gcpy/file_regrid.py +++ b/gcpy/file_regrid.py @@ -1540,7 +1540,7 @@ def main(): "-w", "--weightsdir", metavar="WGT", type=str, - default="", + default=".", help="Directory where regridding weights are found (or will be created)" ) args = parser.parse_args()