Skip to content

Commit 9b57de6

Browse files
authored
Add missing space in error message (#5031)
1 parent a3d8719 commit 9b57de6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchvision/io/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def __init__(self, path: str, stream: str = "video", num_threads: int = 0) -> No
110110
raise RuntimeError(
111111
"Not compiled with video_reader support, "
112112
+ "to enable video_reader support, please install "
113-
+ "ffmpeg (version 4.2 is currently supported) and"
113+
+ "ffmpeg (version 4.2 is currently supported) and "
114114
+ "build torchvision from source."
115115
)
116116
self._c = torch.classes.torchvision.Video(path, stream, num_threads)

0 commit comments

Comments
 (0)