diff options
-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: |