worklogs 0.3.2__tar.gz → 0.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {worklogs-0.3.2 → worklogs-0.3.3}/PKG-INFO +1 -1
- {worklogs-0.3.2 → worklogs-0.3.3}/pyproject.toml +1 -1
- {worklogs-0.3.2 → worklogs-0.3.3}/src/worklogs/__init__.py +1 -1
- {worklogs-0.3.2 → worklogs-0.3.3}/src/worklogs/cli.py +2 -2
- {worklogs-0.3.2 → worklogs-0.3.3}/tests/test_package.py +1 -1
- {worklogs-0.3.2 → worklogs-0.3.3}/uv.lock +1 -1
- {worklogs-0.3.2 → worklogs-0.3.3}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/.github/workflows/ci.yml +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/.github/workflows/release.yml +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/.gitignore +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/.pre-commit-config.yaml +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/.python-version +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/AGENTS.md +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/README.md +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/docs/api.md +0 -0
- {worklogs-0.3.2 → worklogs-0.3.3}/src/worklogs/py.typed +0 -0
|
@@ -168,10 +168,10 @@ def main(argv: Sequence[str] | None = None) -> int:
|
|
|
168
168
|
if args.command == "find":
|
|
169
169
|
return _run_find(args)
|
|
170
170
|
except WorklogsError as error:
|
|
171
|
-
|
|
171
|
+
LOGGER.error("%s", error)
|
|
172
172
|
return 2
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
LOGGER.error("unknown command: %s", args.command)
|
|
175
175
|
return 2
|
|
176
176
|
|
|
177
177
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|