10000 Bubble up error message by dpr-0 · Pull Request #112 · python/cherry-picker · GitHub
[go: up one dir, main page]

Skip to content

Bubble up error message #112

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 15, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert "Bubble up error message"
This reverts commit c67105a.
  • Loading branch information
dpr-0 committed Feb 5, 2024
commit 20d5f69da87a25b13f87b13ac5dc2aa39eea83d9
5 changes: 2 additions & 3 deletions cherry_picker/cherry_picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,9 +803,8 @@ def cherry_pick_cli(
config=config,
chosen_config_path=chosen_config_path,
)
except InvalidRepoException as ire:
click.echo("Error validate sha")
click.echo(ire.args[0])
except InvalidRepoException:
click.echo(f"You're not inside a {config['repo']} repo right now! \U0001F645")
sys.exit(-1)
except ValueError as exc:
ctx.fail(exc)
Expand Down
0