Browse Source

Fix character ruler for too many rows

3d-gussner 3 years ago
parent
commit
c11e06b2d4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lang/lang-check.py

+ 2 - 2
lang/lang-check.py

@@ -61,10 +61,10 @@ def print_source_translation(source, translation, wrapped_source, wrapped_transl
         print_truncated(translation, cols)
     else:
         print(' source text:')
-        print('   |01234567890123456789|')
+        print('     |01234567890123456789|')
         print_wrapped(wrapped_source, rows, cols)
         print(' translated text:')
-        print('   |01234567890123456789|')
+        print('     |01234567890123456789|')
         print_wrapped(wrapped_translation, rows, cols)
     print()