Skip to content
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

メッセージを一つの文章に集約 #3

Merged
merged 1 commit into from
Nov 6, 2020
Merged
Changes from all 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
6 changes: 2 additions & 4 deletions onlinejudge_command/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,15 +275,13 @@ def main(args: Optional[List[str]] = None) -> None:
logger.info('The operation you specified is not supported yet. Pull requests are welcome.')
logger.info('see: https://github.com/online-judge-tools/oj')
if not is_updated:
logger.info('hint: try updating the version of online-judge-tools')
logger.info('Please run: $ pip3 install -U online-judge-tools online-judge-api-client')
logger.info('hint: try updating the version of online-judge-tools: $ pip3 install -U online-judge-tools online-judge-api-client')
sys.exit(1)
except Exception as e:
logger.debug('\n' + traceback.format_exc())
logger.exception(str(e))
if not is_updated:
logger.info('hint: try updating the version of online-judge-tools')
logger.info('Please run: $ pip3 install -U online-judge-tools online-judge-api-client')
logger.info('hint: try updating the version of online-judge-tools: $ pip3 install -U online-judge-tools online-judge-api-client')
sys.exit(1)


Expand Down