diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-26 16:56:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-26 16:56:52 +0000 |
commit | 95e4bd1d82098ed08d978a2626d32ccc71ca19e7 (patch) | |
tree | 415d5f585d047b9836f83dcb603d6a16e533f867 /fetchmailconf | |
parent | e4eadf53fd6fa9cce65e7b73249f66d337d0c847 (diff) | |
download | fetchmail-95e4bd1d82098ed08d978a2626d32ccc71ca19e7.tar.gz fetchmail-95e4bd1d82098ed08d978a2626d32ccc71ca19e7.tar.bz2 fetchmail-95e4bd1d82098ed08d978a2626d32ccc71ca19e7.zip |
Fix handling of properties option.
svn path=/trunk/; revision=2135
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 57327772..a3b42fc0 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -7,7 +7,7 @@ # # TO DO: Arrange for save and quit buttons to clean up all frames dependent # on the current ones. -version = "1.6" +version = "1.7" from Tkinter import * from Dialog import * @@ -273,7 +273,7 @@ class User: str = str + " batchlimit " + `self.batchlimit` if self.expunge != UserDefaults.expunge: str = str + " expunge " + `self.expunge` - if self.properties != UserDefaults.properties: + if self.properties: str = str + " properties " + `self.properties` str = str + "\n" trimmed = self.smtphunt; |