correction

should work now
This commit is contained in:
siengrain 2022-02-24 14:12:47 +00:00
parent aeb7d2ff7d
commit 0bd4dfdd55
1 changed files with 3 additions and 2 deletions

View File

@ -25,8 +25,9 @@ while True:
fin_lyr = letra[0]
l = fin_lyr.split('\n')
for x in l:
if x[0] == ' ':
x = x.replace(' ', '\n', 1)
if len(x) > 0:
if x[0] == ' ':
x = x.replace(' ', '\n', 1)
print(x)
while True:
print('<------------------------------------------------------------->')