Commit 99f92da2 authored by Nicolas Delaby's avatar Nicolas Delaby

Sorry for this mistake, space should be use for City

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27043 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b83cdc53
......@@ -101,7 +101,7 @@ class GeographicAddress(Coordinate, Base):
if zip_city:
self.setZipCode(zip_city[0])
if len(zip_city) > 1:
self.setCity(linesep.join(zip_city[1:]))
self.setCity(' '.join(zip_city[1:]))
security.declareProtected(Permissions.AccessContentsInformation,
'standardTextFormat')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment