... and do no longer assume that the separator is only one character ;-)
This commit is contained in:
parent
898584e906
commit
615d5ef4d8
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class import_svg:
|
|||
return
|
||||
|
||||
meshname = str(ident[:sep])
|
||||
num = int(ident[sep + 1:])
|
||||
num = int(ident[sep + len(ID_SEPARATOR):])
|
||||
|
||||
if not meshname in self.meshes:
|
||||
print('unknown mesh "%s"' % meshname)
|
||||
|
|
Loading…
Reference in a new issue