aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2020-01-31 01:06:18 +0100
committerMatthias Andree <matthias.andree@gmx.de>2020-01-31 01:06:18 +0100
commitb9e7dec64b6edf7931b7826f0514654eb97bbac6 (patch)
treeecf8ff451a34f5e35a15195dd8c3426dff9c9567
parent7c3b3d9d6ceff325bd9b36a2efcac1122e712123 (diff)
downloadfetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.tar.gz
fetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.tar.bz2
fetchmail-b9e7dec64b6edf7931b7826f0514654eb97bbac6.zip
fetchmailconf: Add missing line separator in RunWindow.
-rwxr-xr-xfetchmailconf.py2
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))