Fix missing space in multiline warning (#8593)

Multiline string informing about missing PyTorch/TensorFlow had missing space.
This commit is contained in:
Michał Pogoda 2020-11-18 16:09:26 +01:00 committed by GitHub
parent 8fcb6935a1
commit 9fa3ed1a7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -883,7 +883,7 @@ else:
if not is_tf_available() and not is_torch_available():
logger.warning(
"Neither PyTorch nor TensorFlow >= 2.0 have been found."
"Models won't be available and only tokenizers, configuration"
"Neither PyTorch nor TensorFlow >= 2.0 have been found. "
"Models won't be available and only tokenizers, configuration "
"and file/data utilities can be used."
)