Skip to content

Commit 615d104

Browse files
chronos: fix typos and adjust import (#14278)
Signed-off-by: David Korczynski <david@adalogics.com>
1 parent 785f26d commit 615d104

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infra/experimental/chronos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The Chronos manager can use the `manager.py` to validate the validity of a
6464
replay build for a given project:
6565

6666
```sh
67-
python3 infra/experimental/chronos/manager.py check-test tinyobjloader
67+
python3 infra/experimental/chronos/manager.py check-replay tinyobjloader
6868
```
6969

7070
If the above command fails for the relevant project, then the replay build feature

infra/experimental/chronos/integrity_validator_run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
try:
2424
import tree_sitter_cpp
2525
from tree_sitter import Language, Parser, Query, QueryCursor
26-
except ModuleNotFoundError:
26+
except (ModuleNotFoundError, ImportError):
2727
# pass. Allow this module to be imported even when tree-sitter
2828
# is not available.
2929
pass

0 commit comments

Comments
 (0)