changeset 27201d2a76ab in modules/timesheet:default
details: https://hg.tryton.org/modules/timesheet?cmd=changeset&node=27201d2a76ab
description:
        Add option to remove leading and trailing white spaces from char

        issue7914
        review340511008
diffstat:

 line.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 2466a04c55bb -r 27201d2a76ab line.py
--- a/line.py   Tue Sep 13 00:20:53 2022 +0200
+++ b/line.py   Mon Sep 19 21:25:55 2022 +0200
@@ -53,7 +53,7 @@
         help="The work on which the time is spent.")
     description = fields.Char('Description',
         help="Additional description of the work done.")
-    uuid = fields.Char("UUID", readonly=True)
+    uuid = fields.Char("UUID", readonly=True, strip=False)
 
     @classmethod
     def __setup__(cls):

Reply via email to