Skip to content

Commit 3693f10

Browse files
committed
Fix smoke test.
1 parent 7845f12 commit 3693f10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

smoke_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from apeye.url import URL
1212
from domdf_python_tools.paths import PathPlus, in_directory
1313
from dulwich import porcelain
14+
from dulwich.porcelain import default_bytes_err_stream
1415

1516
# this package
1617
from repo_helper.build import build_sdist, build_wheel
@@ -99,7 +100,7 @@ def is_running_on_actions() -> bool:
99100
if is_running_on_actions():
100101
errstream = BytesIO()
101102
else:
102-
errstream = None
103+
errstream = default_bytes_err_stream
103104

104105
start_time = time.time()
105106
porcelain.clone(str(url), target_dir, depth=1, errstream=errstream)

0 commit comments

Comments
 (0)