Added space between strings

This commit is contained in:
spla 2020-12-02 12:58:02 +01:00
pare b28fbaf764
commit 83cddfca9d

Veure arxiu

@ -576,6 +576,7 @@ def save_anotation(moving):
else:
line_data = " - " + moved_piece_name + "=D"
else:
line_data = " - " + moved_piece_name + "\n"
@ -1721,7 +1722,7 @@ if __name__ == '__main__':
print(v_error)
toot_text = '@'+username + ' ' + not_legal_move_str + moving + '!?)\n'
toot_text = '@'+username + ' ' + not_legal_move_str + ' ' + moving + '!?)\n'
mastodon.status_post(toot_text, in_reply_to_id=status_id,visibility=visibility)
@ -1733,7 +1734,7 @@ if __name__ == '__main__':
print(a_error)
toot_text = '@'+username + ' ' + not_legal_move_str + moving + '!?)\n'
toot_text = '@'+username + ' ' + not_legal_move_str + ' ' + moving + '!?)\n'
mastodon.status_post(toot_text, in_reply_to_id=status_id,visibility=visibility)