Skip to content

Commit 78c6f8c

Browse files
committed
Revert "ignore errors"
This reverts commit 1718ab1.
1 parent 1718ab1 commit 78c6f8c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

atcodertools/tools/envgen.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,7 @@ def prepare_contest(atcoder_client: AtCoderClient,
213213
thread_pool.map(func, tasks)
214214
else:
215215
for argv in tasks:
216-
try:
217-
func(argv)
218-
except Exception:
219-
# Prevent the script from stopping
220-
pass
216+
func(argv)
221217

222218
if config.postprocess_config.exec_cmd_on_contest_dir is not None:
223219
contest_dir_path = os.path.join(workspace_root_path, contest_id)

0 commit comments

Comments
 (0)