Browse Source

Merge pull request #68943 from timothyqiu/vformat-args

Fix not enough arguments error when validating 3to4 conversion
Rémi Verschelde 2 years ago
parent
commit
d0b4cca7a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/project_converter_3_to_4.cpp

+ 1 - 1
editor/project_converter_3_to_4.cpp

@@ -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;