Skip to content

Commit 407eb7c

Browse files
authored
Update fiji-worker.py
1 parent 4da907f commit 407eb7c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

worker/fiji-worker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ def runFiji(message):
129129
cmd = 'aws s3 mv ' + localOut + ' s3://' + AWS_BUCKET + '/' + remoteOut + ' --recursive'
130130
subp = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
131131
out,err = subp.communicate()
132+
out=out.decode()
133+
err=err.decode()
132134
printandlog('== OUT \n'+out, logger)
133135
if err == '':
134136
break

0 commit comments

Comments
 (0)