fix name splitting

This commit is contained in:
David Holdeman 2020-08-22 09:37:34 -05:00
parent e317fee980
commit 25368c2913
1 changed files with 1 additions and 1 deletions

View File

@ -1333,7 +1333,7 @@ def makeOutput(diffDir1, diffDir2, prjctName, prjctPath, times, dim1, dim2):
prjct, ext = filename.split('.') prjct, ext = filename.split('.')
# Accounts for project names containing hyphens # Accounts for project names containing hyphens
splitted = prjct.split('-') splitted = prjct.split('-')
prj = splitted[-2] prj = "-".join(splitted[0:-1])
layer = splitted[-1] layer = splitted[-1]
out=outfile.format( out=outfile.format(
diff1=diffDir1, diff1=diffDir1,