Skip to content

Commit

Permalink
Merge pull request #1135 from koba-e964/fix/typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
yosupo06 authored May 19, 2024
2 parents 7326d68 + 1d085b0 commit 4d81247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def generate(self, mode: Mode):
self.generate_params_h()

if mode == self.Mode.CLEAN:
logger.info('Clean input & output directry of {}'.format(
logger.info('Cleaning input & output directory of {}'.format(
self.basedir.name))
self.clean()
return
Expand Down Expand Up @@ -536,6 +536,6 @@ def find_problem_dir(rootdir: Path, problem_name: Path) -> Optional[Path]:
logger.error('Cannot find problem: {}'.format(problem_name))
return None
if len(tomls) >= 2:
logger.error('Find multiple problem dirs: {}'.format(problem_name))
logger.error('Found multiple problem dirs: {}'.format(problem_name))
return None
return tomls[0].parent

0 comments on commit 4d81247

Please sign in to comment.