Skip to content

Commit 3b9d1fa

Browse files
committed
Fix TypeError: 'NoneType' object is not iterable
1 parent c44f1f7 commit 3b9d1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def run_with_logging(cmd, cwd=None):
248248
logging.debug("Run: %s", shlex.join(cmd))
249249
with subprocess.Popen(cmd, cwd=cwd, encoding="utf-8") as p:
250250
try:
251-
for line in p.stdout:
251+
for line in (p.stdout or ()):
252252
logging.debug(">>>> %s", line.rstrip())
253253
except:
254254
p.kill()

0 commit comments

Comments
 (0)