From 56fb74c502690e6781e2f914b95534c61aa070e9 Mon Sep 17 00:00:00 2001 From: Scott Date: Tue, 23 Oct 2018 10:47:31 -0500 Subject: [PATCH] Fix typo (duplicate self). Fixes #683 --- core/admin/mailu/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/admin/mailu/models.py b/core/admin/mailu/models.py index 3653011f..62c25c81 100644 --- a/core/admin/mailu/models.py +++ b/core/admin/mailu/models.py @@ -271,7 +271,7 @@ class User(Base, Email): @property def destination(self): if self.forward_enabled: - result = self.self.forward_destination + result = self.forward_destination if self.forward_keep: result += ',' + self.email return result