diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 14:53:45 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 14:53:45 +0000 |
commit | e50661acc11dd82eda8624670841ea6edc88492e (patch) | |
tree | a94e8775222ee9ead36cb4ba1805b26bb4461592 | |
parent | 54322e3d200bce07114d9b584270ce5a800bc372 (diff) | |
download | fetchmail-e50661acc11dd82eda8624670841ea6edc88492e.tar.gz fetchmail-e50661acc11dd82eda8624670841ea6edc88492e.tar.bz2 fetchmail-e50661acc11dd82eda8624670841ea6edc88492e.zip |
Fix capitalization of two global option descriptions.
svn path=/branches/BRANCH_6-3/; revision=5320
-rwxr-xr-x | fetchmailconf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py index baeb1a0c..db55ca58 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -827,14 +827,14 @@ class ConfigurationEdit(Frame, MyWidget): sb = Frame(gf) Checkbutton(sb, - {'text':'send spam bounces?', + {'text':'Send spam bounces?', 'variable':self.spambounce, 'relief':GROOVE}).pack(side=LEFT, anchor=W) sb.pack(fill=X) sb = Frame(gf) Checkbutton(sb, - {'text':'treat permanent errors as temporary?', + {'text':'Treat permanent errors as temporary?', 'variable':self.softbounce, 'relief':GROOVE}).pack(side=LEFT, anchor=W) sb.pack(fill=X) |