Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ASTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def CreateARSimStructure(RUCPackage:str, destination:str, version:str, startSim:
# This because silent and autoclose mode do not support starting arsim
pid = subprocess.Popen(os.path.join(destination, 'ar000loader.exe'), stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, creationflags=0x00000008)
else:
logging.debug(f'Error in creating ARSimStructure code {process.returncode}: {PVIReturnCodeText[process.returncode]}')
logging.debug(f'Error in creating ARSimStructure code {process.returncode}: {PVIReturnCodeText.get(process.returncode)}')

return process

Expand Down