diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-05-13 22:19:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-05-13 22:19:09 +0000 |
commit | b640e803459459f5751669277148b4af1579e651 (patch) | |
tree | 28293fde19459c1db75699a90581ab191a6e8a40 /fetchmailconf | |
parent | f9b53030c81bdae78e0a1da362572358b0ba0d32 (diff) | |
download | fetchmail-b640e803459459f5751669277148b4af1579e651.tar.gz fetchmail-b640e803459459f5751669277148b4af1579e651.tar.bz2 fetchmail-b640e803459459f5751669277148b4af1579e651.zip |
Quote password and string parts.
svn path=/trunk/; revision=2894
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 4c419ad0..376614e0 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -260,9 +260,9 @@ class User: def __repr__(self): res = " " - res = res + "user " + str(self.remote) + " there "; + res = res + "user " + `self.remote` + " there "; if self.password: - res = res + "with password " + str(self.password) + " " + res = res + "with password " + `self.password` + " " if self.localnames: res = res + "is" for x in self.localnames: |