Skip to content

Commit

Permalink
Fix validator output
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrappyCocco committed Apr 24, 2024
1 parent 01233be commit f6625eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/CSVValidator.py
Original file line number Diff line number Diff line change
@@ -234,7 +234,7 @@ def process_file(self, filename: str):
"Warning [Deprecated Line]: " +
"This line will be skipped because is deprecated or empty in the original file. " +
"Consider removing it in your file too \n" +
"Description: " + str(row[3]) + "\n" +
"Description: " + str(row[2]) + "\n" +
"Original: " + str(row[3]) + "\n" +
"Translated: " + str(row[4]) + "\n\n")
# Check balance of brackets in original line

0 comments on commit f6625eb

Please sign in to comment.