Skip to content

Commit 40151da

Browse files
authored
fix merge error
1 parent b7da32f commit 40151da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltool/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import platform
77
import random
88
import shutil
9+
import string
910
import sys
1011
from functools import partial # pylint: disable=unused-import
1112
from typing import (IO, Any, AnyStr, Callable, # pylint: disable=unused-import
@@ -216,4 +217,4 @@ def random_outdir(): # type: () -> Text
216217
# compute this once and store it as a function attribute - each subsequent call will return the same value
217218
if not hasattr(random_outdir, 'outdir'):
218219
random_outdir.outdir = '/' + ''.join([random.choice(string.ascii_letters) for _ in range(6)])
219-
return random_outdir.outdir
220+
return random_outdir.outdir

0 commit comments

Comments
 (0)