diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-23 11:58:45 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 02e938c90ee265cb869265dbdabcb19fa4dc25b7 (patch) | |
tree | 5e2076473358eeb632f2a00884d68faaa8f8115a | |
parent | 1d90c41e6b80bfd26899cafcc0feabba36503e3f (diff) | |
download | Ishtar-02e938c90ee265cb869265dbdabcb19fa4dc25b7.tar.bz2 Ishtar-02e938c90ee265cb869265dbdabcb19fa4dc25b7.zip |
Quick edit basket form: fix confirmation value for "shared write_with"
-rw-r--r-- | archaeological_finds/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index ee36ebc99..8337cbcf8 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -1156,7 +1156,7 @@ class QAFindBasketModify(QAForm): def _get_qa_shared_with(self, value): return self._get_ishtar_user_list(value) - def _get_qa_shared_writewith(self, value): + def _get_qa_shared_write_with(self, value): return self._get_ishtar_user_list(value) |