Skip to content

Commit c4a3b62

Browse files
committed
Correct a typo.
1 parent 09e862a commit c4a3b62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

oauth2client/crypt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def from_string(key, password='notasecret'):
235235
pkey = RSA.importKey(parsed_pem_key)
236236
else:
237237
raise NotImplementedError(
238-
'PKCS12 format is not supported by the PyCrpto library. '
238+
'PKCS12 format is not supported by the PyCrypto library. '
239239
'Try converting to a "PEM" '
240240
'(openssl pkcs12 -in xxxxx.p12 -nodes -nocerts > privatekey.pem) '
241241
'or using PyOpenSSL if native code is an option.')
@@ -259,13 +259,13 @@ def from_string(key, password='notasecret'):
259259

260260
def _parse_pem_key(raw_key_input):
261261
"""Identify and extract PEM keys.
262-
262+
263263
Determines whether the given key is in the format of PEM key, and extracts
264264
the relevant part of the key if it is.
265-
265+
266266
Args:
267267
raw_key_input: The contents of a private key file (either PEM or PKCS12).
268-
268+
269269
Returns:
270270
string, The actual key if the contents are from a PEM file, or else None.
271271
"""

0 commit comments

Comments
 (0)