diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-01-24 23:40:23 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-01-24 23:40:23 +0000 |
commit | 37197fbecca4bd08bf251e2a5add4be019cc6db7 (patch) | |
tree | f6ad2560e67a94c672e21599098540ca6ad452cd | |
parent | 36bd36b181398f9be0b3ca882c3273d8fbc2e8dd (diff) | |
download | fetchmail-37197fbecca4bd08bf251e2a5add4be019cc6db7.tar.gz fetchmail-37197fbecca4bd08bf251e2a5add4be019cc6db7.tar.bz2 fetchmail-37197fbecca4bd08bf251e2a5add4be019cc6db7.zip |
fetchmailconf: Add verbose/normal to run buttons of main window.
-rwxr-xr-x | fetchmailconf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py index e856d9d0..2d7ef19d 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -2006,13 +2006,13 @@ whether to use POP or IMAP, and so forth). Use `Run fetchmail' to run fetchmail with debugging enabled. This is a good way to test out a new configuration. """, width=600).pack(side=TOP) - Button(self, text='Run fetchmail',fg='blue', command=self.test).pack() + Button(self, text='Run fetchmail (verbose)',fg='blue', command=self.test).pack() Message(self, text=""" Use `Run fetchmail' to run fetchmail in foreground. Progress messages will be shown, but not debug messages. """, width=600).pack(side=TOP) - Button(self, text='Run fetchmail', fg='blue', command=self.run).pack() + Button(self, text='Run fetchmail (normal)', fg='blue', command=self.run).pack() Message(self, text=""" Or you can just select `Quit' to exit the launcher now. |