Skip to content

Commit 377c262

Browse files
authored
Merge pull request #2778 from BHBNSN/master
fix(export): use type names for mutated module EFT export
2 parents 56e662f + 5924c97 commit 377c262

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

service/port/muta.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
def renderMutant(mutant, firstPrefix='', prefix=''):
3030
exportLines = []
31-
exportLines.append('{}{}'.format(firstPrefix, mutant.baseItem.name))
32-
exportLines.append('{}{}'.format(prefix, mutant.mutaplasmid.item.name))
31+
exportLines.append('{}{}'.format(firstPrefix, mutant.baseItem.typeName))
32+
exportLines.append('{}{}'.format(prefix, mutant.mutaplasmid.item.typeName))
3333
exportLines.append('{}{}'.format(prefix, renderMutantAttrs(mutant)))
3434
return '\n'.join(exportLines)
3535

0 commit comments

Comments
 (0)