Skip to content

Commit dc6703e

Browse files
committed
fix typo in shutil
1 parent d0c34ce commit dc6703e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python2worker/cp-worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def runCellProfiler(message):
224224
printandlog('CP PROBLEM: Done file does not exist.',logger)
225225
logger.removeHandler(watchtowerlogger)
226226
import shutil
227-
shultil.rmtree(localOut, ignore_errors=True)
227+
shutil.rmtree(localOut, ignore_errors=True)
228228
return 'CP_PROBLEM'
229229

230230

worker/cp-worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def runCellProfiler(message):
219219
printandlog('CP PROBLEM: Done file does not exist.',logger)
220220
logger.removeHandler(watchtowerlogger)
221221
import shutil
222-
shultil.rmtree(localOut, ignore_errors=True)
222+
shutil.rmtree(localOut, ignore_errors=True)
223223
return 'CP_PROBLEM'
224224

225225

0 commit comments

Comments
 (0)