fixed broken spaces

This commit is contained in:
siengrain 2022-02-24 14:02:37 +00:00
parent 1b8bf28bc9
commit aeb7d2ff7d
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@ while True:
fin = letras.parsero(un_lyr)
letra = fin.split('©', 1)
fin_lyr = letra[0]
print(fin_lyr)
l = fin_lyr.split('\n')
for x in l:
if x[0] == ' ':
x = x.replace(' ', '\n', 1)
print(x)
while True:
print('<------------------------------------------------------------->')
res = input("What's the move? (s to search for another song/q to quit): ")