Browse Source

Remove newlines from transaction labels

Closes: #2176
283
Johann Bauer 8 years ago
parent
commit
03fc29c4ac
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -235,6 +235,7 @@ class Abstract_Wallet(PrintError):
changed = False
old_text = self.labels.get(name)
if text:
text = text.replace("\n", " ")
if old_text != text:
self.labels[name] = text
changed = True

Loading…
Cancel
Save