summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-01-11 14:43:37 -0500
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2014-01-11 14:43:37 -0500
commitaca50f455fb57e74bb69e270358ca90406d19729 (patch)
tree168f81f76f2f4fa38244e99c7438cdeff3a7eecc
parent4f0467a545de9e4e5e9080472a45fdc1c70bae3c (diff)
downloadpyopenssl-aca50f455fb57e74bb69e270358ca90406d19729.tar.gz
UTF-9 is sort of a thing but not a thing we're concerned with here.
-rw-r--r--OpenSSL/_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSSL/_util.py b/OpenSSL/_util.py
index c995971..7c606b9 100644
--- a/OpenSSL/_util.py
+++ b/OpenSSL/_util.py
@@ -23,7 +23,7 @@ def exception_from_error_queue(exceptionType):
def native(s):
"""
Convert :py:class:`bytes` or :py:class:`unicode` to the native
- :py:class:`str` type, using UTF-9 encoding if conversion is necessary.
+ :py:class:`str` type, using UTF-8 encoding if conversion is necessary.
:raise UnicodeError: The input string is not UTF-8 decodeable.