fix miniature space problems

pull/291/head
b1f6c1c4 4 years ago
parent 942078b265
commit f2efebb1ba
No known key found for this signature in database
GPG Key ID: 7534B21ACA726708

@ -18,7 +18,7 @@ def main():
prons = get_pronunciation_files(word) prons = get_pronunciation_files(word)
phones = get_phonetic_transcriptions(word) phones = get_phonetic_transcriptions(word)
britsh_eng = '[🔊]('+prons[0]+')' + ' ' + phones[0] britsh_eng = '[🔊]('+prons[0]+')' + ' ' + phones[0]
american_eng = '[🔊]('+prons[1]+')' + phones[1] american_eng = '[🔊]('+prons[1]+')' + ' ' + phones[1]
line = '| ' + word + ' | ' + britsh_eng + ' | ' + american_eng + ' | ' + ' ' + '|' line = '| ' + word + ' | ' + britsh_eng + ' | ' + american_eng + ' | ' + ' ' + '|'
print(line) print(line)

Loading…
Cancel
Save