Fix pyhton typo (#8041)

This commit is contained in:
Ülgen Sarıkavak 2020-11-28 10:00:23 +03:00 committed by GitHub
parent 2801c0cb88
commit 045d05fa72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ public class PythonClientCodegen extends PythonLegacyClientCodegen {
// check library option to ensure only urllib3 is supported // check library option to ensure only urllib3 is supported
if (!DEFAULT_LIBRARY.equals(getLibrary())) { if (!DEFAULT_LIBRARY.equals(getLibrary())) {
throw new RuntimeException("Only the `urllib3` library is supported in the refactored `python` client generator at the moment. Please fall back to `python-legacy` client generator for the time being. We welcome contributions to add back `asyncio`, `tornado` support to the `pyhton` client generator."); throw new RuntimeException("Only the `urllib3` library is supported in the refactored `python` client generator at the moment. Please fall back to `python-legacy` client generator for the time being. We welcome contributions to add back `asyncio`, `tornado` support to the `python` client generator.");
} }
} }