From a658fa2cf2bff47ca45aa3f35ae928a2dc65b5f0 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 5 Sep 2009 11:23:02 +0000 Subject: [PATCH] Fix processing of path features. This makes example/libraries fully working. [SVN r56032] --- v2/build/property.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/build/property.py b/v2/build/property.py index 7858618ff..330b8c113 100644 --- a/v2/build/property.py +++ b/v2/build/property.py @@ -158,7 +158,7 @@ def translate_paths (properties, path): p = split [1] if get_grist (p) and 'path' in feature.attributes (get_grist (p)): - values = __re_two_ampersands.split (forward_slashes (get_grist (p))) + values = __re_two_ampersands.split (forward_slashes (replace_grist (p, ""))) t = [os.path.join(path, v) for v in values] t = '&&'.join (t)