diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-05-25 12:15:03 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:49:06 +0200 | 
| commit | d0cfcf678c10e6a1b89a2b0864d695acf89b54e1 (patch) | |
| tree | c14672a832b1ff0eceeba2353a803daa1f640f26 /ishtar_common/models.py | |
| parent | e5ba6d1915de80db9145cafed8a9be3b97a859b6 (diff) | |
| download | Ishtar-d0cfcf678c10e6a1b89a2b0864d695acf89b54e1.tar.bz2 Ishtar-d0cfcf678c10e6a1b89a2b0864d695acf89b54e1.zip | |
Fix profile migration (alays create a current)
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 e4c6d0e9a..a5bf6cf3a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2680,7 +2680,7 @@ class Person(Address, Merge, OwnPerms, ValueGetter):              res = cache.get(cache_key)              if res in (True, False):                  return res -            # list all cache key in order to clean them on profiel change +            # list all cache key in order to clean them on profile change              cache_key_list = 'sessionlist-{}'.format(session.session_key)              key_list = cache.get(cache_key_list, [])              key_list.append(cache_key) | 
