From df7e1f0be93eec90ec3f6a998f45f5d83101bffe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Pin?= Date: Wed, 27 Oct 2010 18:35:50 +0200 Subject: [PATCH] =?utf8?q?Bugfixe=20:=20utilisation=20du=20caract=C3=A8re?= =?utf8?q?=20tabulation=20comme=20s=C3=A9parateur=20dans=20les=20paths=20e?= =?utf8?q?nvoy=C3=A9s=20(au=20lieu=20du=20=C2=AB=C2=A0/=C2=A0=C2=BB=20qui?= =?utf8?q?=20peut=20=C3=AAtre=20pr=C3=A9sent=20dans=20un=20nom=20de=20coll?= =?utf8?q?ection=20publi=C3=A9).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- skins/lrservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/lrservice.py b/skins/lrservice.py index fad05e8..d41d355 100644 --- a/skins/lrservice.py +++ b/skins/lrservice.py @@ -14,7 +14,7 @@ method = fg('method') if method == 'normaliseAndCreatePath' : normalizedPath = [] o = portal - path = fg('path', '').split('/') + path = fg('path', '').split(' ') # séparateur : 0x09 (tabulation) for part in path : validId = makeValidId(o, part, allow_dup=1) if o.hasObject(validId) : -- 2.20.1