changeset 36b5c557dff6 in modules/incoterm:6.0
details: https://hg.tryton.org/modules/incoterm?cmd=changeset&node=36b5c557dff6
description:
        Format location name for incoterm name

        issue11578
        review443311003
        (grafted from fb0d131ddcc3a8c762fae6774d24e4a4a9fc0e72)
diffstat:

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

diffs (12 lines):

diff -r 2e793b252885 -r 36b5c557dff6 common.py
--- a/common.py Fri Nov 05 00:14:36 2021 +0100
+++ b/common.py Mon Jul 11 22:07:22 2022 +0200
@@ -57,7 +57,7 @@
         if self.incoterm:
             name = self.incoterm.rec_name
             if self.incoterm_location:
-                name += ' %s' + self.incoterm_location.rec_name
+                name += ' %s' % self.incoterm_location.rec_name
         return name
 
 

Reply via email to