changeset 0620235caa30 in modules/incoterm:6.2
details: https://hg.tryton.org/modules/incoterm?cmd=changeset&node=0620235caa30
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 3aea183c7447 -r 0620235caa30 common.py
--- a/common.py Mon Nov 01 17:38:18 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