Skip to content

Commit

Permalink
fix v2 print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jacomago committed Jan 10, 2025
1 parent bc70162 commit 5562d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/recceiver/scripts/test_mock_iocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def startIOC():
pid, fd = os.forkpty()
if pid == 0:
os.chdir("../../../client/iocBoot/iocdemo")
print os.curdir
print(os.curdir)
os.execv("st_test.cmd", [''])
return pid, fd

Expand All @@ -38,7 +38,7 @@ def main():
for i in range(1, 100):
iocpid, iocfd = startIOC()
pids.append(iocpid)
print "len pids: ", len(pids)
print("len pids: ", len(pids))
iocthread = threading.Thread(group=None, target=readfd, args=(iocfd,), name="iocthread", kwargs={})
threads.append(iocthread)
iocthread.start()
Expand Down

0 comments on commit 5562d04

Please sign in to comment.