From b640e803459459f5751669277148b4af1579e651 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 13 May 2000 22:19:09 +0000 Subject: Quote password and string parts. svn path=/trunk/; revision=2894 --- fetchmailconf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fetchmailconf') 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: -- cgit v1.2.3