Merge pull request #68943 from timothyqiu/vformat-args

Fix not enough arguments error when validating 3to4 conversion
This commit is contained in:
Rémi Verschelde 2022-11-21 11:43:35 +01:00
commit d0b4cca7a6
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -2172,7 +2172,7 @@ int ProjectConverter3To4::validate_conversion() {
lines.append(line);
}
}
print_line(vformat("Checking for conversion - %d/%d file - \"%s\" with size - %d KB"), i + 1, collected_files.size(), file_name.trim_prefix("res://"), file_size / 1024);
print_line(vformat("Checking for conversion - %d/%d file - \"%s\" with size - %d KB", i + 1, collected_files.size(), file_name.trim_prefix("res://"), file_size / 1024));
Vector<String> changed_elements;
Vector<String> reason;