diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-01-31 01:06:18 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-01-31 01:06:18 +0100 |
commit | b9e7dec64b6edf7931b7826f0514654eb97bbac6 (patch) | |
tree | ecf8ff451a34f5e35a15195dd8c3426dff9c9567 | |
parent | 7c3b3d9d6ceff325bd9b36a2efcac1122e712123 (diff) | |
download | fetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.tar.gz fetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.tar.bz2 fetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.zip |
fetchmailconf: Add missing line separator in RunWindow.
-rwxr-xr-x | fetchmailconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py index 2350bc36..d74f74ee 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -1961,7 +1961,7 @@ class RunWindow(Frame): self.textwidget.insert(END, ch) self.update() ret = child_stdout.close() - self.textwidget.insert(END, "Done.") + self.textwidget.insert(END, "Done.\n") if ret is not None: if ret < 0: self.textwidget.insert(END, "Fetchmail killed with signal {}.".format(-ret)) |