changeset 8c0bdefa28c5 in modules/product:default
details: https://hg.tryton.org/modules/product?cmd=changeset;node=8c0bdefa28c5
description:
Fix syntax error
It comes from a bad application of the patch from issue6314
diffstat:
uom.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 1843ec99ecf0 -r 8c0bdefa28c5 uom.py
--- a/uom.py Mon Apr 13 17:50:45 2020 +0200
+++ b/uom.py Mon Apr 13 18:10:18 2020 +0200
@@ -57,7 +57,7 @@
('rounding', '>', 0),
],
depends=['digits'],
- help+ help="The accuracy to which values are rounded.")
+ help="The accuracy to which values are rounded.")
digits = fields.Integer(
"Display Digits", required=True,
help="The number of digits to display after the decimal separator.")