From c6539e557474985a7ad99945aca9de7925841cc7 Mon Sep 17 00:00:00 2001 From: reiche Date: Thu, 4 Sep 2025 16:21:22 +0200 Subject: [PATCH] Fixed that the 3DX tag ASM-PRD- is generated. Now it is only PRD- or ASM- --- Python_Code/AssemblyList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python_Code/AssemblyList.py b/Python_Code/AssemblyList.py index 807a422..ec7a806 100644 --- a/Python_Code/AssemblyList.py +++ b/Python_Code/AssemblyList.py @@ -72,7 +72,7 @@ class AssemblyList: sec = self.components.find_section(sname) if not sec is None: secOG = sec['3DX-Section OG'].to_string(index=False, na_rep='').strip() - if 'ASM' in secOG: + if 'ASM' in secOG or 'PRD' in secOG: esec['3DX-Section']=secOG else: esec['3DX-Section'] = 'ASM-'+sec['3DX-Section OG'].to_string(index=False, na_rep='').strip()