Skip to content

Commit

Permalink
fix: typo $ mark in logs of vdb migrate command (langgenius#2901)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 authored Mar 19, 2024
1 parent 11636bc commit d018e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d018e27

Please sign in to comment.