Skip to content

Commit c998d91

Browse files
committed
convert all items to a str in ' '.join(...)
1 parent 7cb2839 commit c998d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def call(cmd, cwd=None, verbose=False):
6969
try:
7070
subprocess.check_call(cmd, cwd=cwd)
7171
except subprocess.CalledProcessError as cpe:
72-
logging.debug("executing command >>> %r with cwd %s", " ".join([str(c) for c in cmd]), cwd)
72+
logging.debug("executing command >>> %r with cwd %s", " ".join([str(c) for c in cmd]), cwd)
7373
logging.error(
7474
"Process failure: %s\n[---- START OUTPUT ----]\n%s\n[---- END OUTPUT ----]",
7575
str(cpe),

0 commit comments

Comments
 (0)