Skip to content

Commit 4bde912

Browse files
committed
Update based on feedback
1 parent ea47371 commit 4bde912

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/add_to_search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ def chunk_list(lst: List, chunk_size: int) -> Generator[List, None, None]:
2929

3030
def main():
3131
if not SEARCH_HOST:
32-
print("Please set the environment variable SEARCH_MASTER_KEY", file=sys.stderr)
32+
print("Please set the environment variable SEARCH_HOST", file=sys.stderr)
3333
sys.exit(1)
3434
if not MASTER_KEY:
35-
print("Please set the environment variable SEARCH_HOST", file=sys.stderr)
35+
print("Please set the environment variable SEARCH_MASTER_KEY", file=sys.stderr)
3636
sys.exit(1)
3737
args = _get_arg_parser().parse_args()
3838
json_output_path = pathlib.Path(args.json_output_path)

0 commit comments

Comments
 (0)