Cédric Krier pushed to branch branch/default at Tryton / Tryton
Commits:
a9892884 by Cédric Krier at 2023-01-25T09:41:24+01:00
Fix source clause of empty translation source introduced by 4ec2377b84e5
- - - - -
1 changed file:
- trytond/trytond/ir/translation.py
Changes:
=====================================
trytond/trytond/ir/translation.py
=====================================
@@ -1585,8 +1585,8 @@
where=((translation.value == '')
| (translation.value == Null))
& (translation.lang == lang)
- & translation.src != ''
- & translation.src != Null))
+ & (translation.src != '')
+ & (translation.src != Null)))
& (translation.value != '')
& (translation.value != Null),
group_by=translation.src))
View it on Heptapod:
https://foss.heptapod.net/tryton/tryton/-/commit/a989288420101d8f36be9bce5a1a51c550f6a355
--
View it on Heptapod:
https://foss.heptapod.net/tryton/tryton/-/commit/a989288420101d8f36be9bce5a1a51c550f6a355
You're receiving this email because of your account on foss.heptapod.net.