diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-08 17:48:26 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-15 21:54:18 +0200 |
commit | 6ce89d952bf2a59cf785fe7fc945fa711a752f38 (patch) | |
tree | 9e3535fd864b420c2805d2b5e803296ab2569446 /ishtar_common/models.py | |
parent | ddf0a983dee94b848502be3a8d09907acdcfd26a (diff) | |
download | Ishtar-6ce89d952bf2a59cf785fe7fc945fa711a752f38.tar.bz2 Ishtar-6ce89d952bf2a59cf785fe7fc945fa711a752f38.zip |
Fix person merge (typo) (refs #3094)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 6021d5fa8..9509b36a6 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1170,7 +1170,7 @@ class Address(BaseHistorizedItem): def address_lbl(self): lbl = u'' prefix = '' - if self.alt_adress_is_prefered: + if self.alt_address_is_prefered: prefix = 'alt_' if getattr(self, prefix + 'address'): lbl += getattr(self, prefix + 'address') |