Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove log with database connection string #123

Merged
merged 3 commits into from
May 10, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions housekeeper/cli/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ def base(
raise click.Abort
if not root_path:
LOG.error("Please specify a root dir")
raise click.Abort
LOG.info("Use database %s", db_path)
raise click.Abort()
context.obj["database"] = db_path
LOG.info("Use root path %s", root_path)
context.obj["store"] = Store(db_path, root_path)
Expand Down