Skip to content

Commit

Permalink
Fix filename typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmpr committed Jul 31, 2024
1 parent 1aa3be3 commit 55895e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "kataloger"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"aiohttp",
"yarl",
Expand Down
2 changes: 1 addition & 1 deletion src/kataloger/cli/configuration_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def load_configuration_data(configuration_path: Optional[Path]) -> Configuration
if file_exists(configuration_candidate):
configuration_path = configuration_candidate
else:
configuration_path = get_package_file("defaults.configuration.toml")
configuration_path = get_package_file("default.configuration.toml")
if not file_exists(configuration_path):
message: str = ("Can't find default configuration file. "
"Please specify configuration file with -c [PATH] argument.")
Expand Down

0 comments on commit 55895e2

Please sign in to comment.