From 2cbfb0e2a877c5a1c3d8450a777edc26b314a343 Mon Sep 17 00:00:00 2001 From: Bartek Skorupa Date: Tue, 1 Nov 2011 09:23:49 +0000 Subject: prefix was placed at the end of name instead being placed in front. Fixed it. --- io_export_after_effects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io_export_after_effects.py') diff --git a/io_export_after_effects.py b/io_export_after_effects.py index 34795063..babe1f84 100644 --- a/io_export_after_effects.py +++ b/io_export_after_effects.py @@ -87,10 +87,10 @@ def get_selected(context, prefix): # convert names of objects to avoid errors in AE. Add user specified prefix def convert_name(is_comp, ob, prefix): if is_comp: - ob_name = ob + prefix + ob_name = prefix + ob ob_name = ob_name.replace('"', "_") else: - ob_name = ob.name + prefix + ob_name = prefix + ob.name if ob_name[0].isdigit(): ob_name = "_" + ob_name -- cgit v1.2.3