From d018e279f895a409edf835985393b9c67561147e Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Tue, 19 Mar 2024 22:21:58 +0800 Subject: [PATCH] fix: typo $ mark in logs of vdb migrate command (#2901) --- api/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/commands.py b/api/commands.py index 250039a365..b82d4d5d5d 100644 --- a/api/commands.py +++ b/api/commands.py @@ -254,7 +254,7 @@ def migrate_knowledge_vector_database(): for dataset in datasets: total_count = total_count + 1 click.echo(f'Processing the {total_count} dataset {dataset.id}. ' - + f'{create_count} created, ${skipped_count} skipped.') + + f'{create_count} created, {skipped_count} skipped.') try: click.echo('Create dataset vdb index: {}'.format(dataset.id)) if dataset.index_struct_dict: