Don't put in spurious newline

This commit is contained in:
David Baker 2017-06-13 11:54:28 +01:00
parent 89c7477bd6
commit 4eb7419335
2 changed files with 4 additions and 4 deletions

View file

@ -38,9 +38,10 @@ with open(dstpath) as ifp:
elif strippedline.endswith(','): elif strippedline.endswith(','):
ofp.write(line) ofp.write(line)
else: else:
ofp.write(' '+strippedline) ofp.write(' '+strippedline+',')
ofp.write(",\n") toAddStr = json.dumps(toAdd, indent=4, separators=(',', ': '), ensure_ascii=False, encoding="utf8").strip("{}\n")
toAddStr = json.dumps(toAdd, indent=4, separators=(',', ': '), ensure_ascii=False, encoding="utf8")[1:-1] ofp.write("\n")
ofp.write(toAddStr.encode('utf8')) ofp.write(toAddStr.encode('utf8'))
ofp.write("\n")
os.rename(tmppath, dstpath) os.rename(tmppath, dstpath)

View file

@ -872,7 +872,6 @@
"You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.", "You have <a>disabled</a> URL previews by default.": "Você <a>desabilitou</a> pré-visualizações de links por padrão.",
"You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.", "You have <a>enabled</a> URL previews by default.": "Você <a>habilitou</a> pré-visualizações de links por padrão.",
"You have entered an invalid contact. Try using their Matrix ID or email address.": "Você inseriu um contato inválido. Tente usar o ID Matrix ou endereço de e-mail da pessoa que está buscando.", "You have entered an invalid contact. Try using their Matrix ID or email address.": "Você inseriu um contato inválido. Tente usar o ID Matrix ou endereço de e-mail da pessoa que está buscando.",
"You have been banned from %(roomName)s by %(userName)s.": "Você foi expulso(a) da sala %(roomName)s por %(userName)s.", "You have been banned from %(roomName)s by %(userName)s.": "Você foi expulso(a) da sala %(roomName)s por %(userName)s.",
"Send anyway": "Enviar de qualquer maneira", "Send anyway": "Enviar de qualquer maneira",
"This room": "Esta sala", "This room": "Esta sala",