changeset 49d34c8cdf02 in modules/incoterm:6.4
details: https://hg.tryton.org/modules/incoterm?cmd=changeset&node=49d34c8cdf02
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 ceb6e8928d63 -r 49d34c8cdf02 common.py
--- a/common.py Mon May 02 17:58:35 2022 +0200
+++ b/common.py Mon Jul 11 22:07:22 2022 +0200
@@ -55,7 +55,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