1
0
Fork 0

... and do no longer assume that the separator is only one character ;-)

This commit is contained in:
mfranz 2008-03-05 18:21:45 +00:00
parent 898584e906
commit 615d5ef4d8

View file

@ -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)