changeset fb0d131ddcc3 in modules/incoterm:default
details: https://hg.tryton.org/modules/incoterm?cmd=changeset&node=fb0d131ddcc3
description:
Format location name for incoterm name
issue11578
review443311003
diffstat:
common.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r e5ef0cce941b -r fb0d131ddcc3 common.py
--- a/common.py Tue May 31 10:13:13 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