changeset 14a45566a6da in modules/company:default
details: https://hg.tryton.org/modules/company?cmd=changeset&node=14a45566a6da
description:
Fix typo in help text for company field of sequence
diffstat:
ir.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (13 lines):
diff -r 4e7e648ccf7a -r 14a45566a6da ir.py
--- a/ir.py Sun Apr 11 21:33:54 2021 +0100
+++ b/ir.py Sun Apr 18 17:34:51 2021 +0200
@@ -18,7 +18,8 @@
domain=[
('id', If(Eval('context', {}).contains('company'), '=', '!='),
Eval('context', {}).get('company', -1)),
- ], help="Restrict the sequence usage to the company.")
+ ],
+ help="Restricts the sequence usage to the company.")
@classmethod
def __setup__(cls):