Skip to content
Snippets Groups Projects
Commit 2cbfb0e2 authored by Bartek Skorupa's avatar Bartek Skorupa
Browse files

prefix was placed at the end of name instead being placed in front. Fixed it.

parent 943de14e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment