Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Commit 064d473

Browse files
committed
py35
1 parent a117b4d commit 064d473

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PyLivestream/io.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ def getexe(exe:Path=None) -> Tuple[Path,Path]:
2020
probeexe = Path(probeexe).expanduser()
2121
# %% verify
2222
try:
23-
subprocess.check_call((exe,'-h'),
23+
subprocess.check_call((str(exe),'-h'),
2424
stdout=DEVNULL, stderr=DEVNULL)
2525
except FileNotFoundError as e:
2626
raise FileNotFoundError('FFmpeg not found at {} {}.'.format(exe,e))
2727

2828
try:
29-
subprocess.check_call((probeexe,'-h'),
29+
subprocess.check_call((str(probeexe),'-h'),
3030
stdout=DEVNULL, stderr=DEVNULL)
3131
except FileNotFoundError as e:
3232
raise FileNotFoundError('FFprobe not found at {} {}.'.format(probeexe,e))

0 commit comments

Comments
 (0)