Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: third_party/oauth2client/MODIFICATIONS.diff

Issue 183793010: Added OAuth2 authentication to apply_issue (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Fixed README Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/oauth2client/LICENSE ('k') | third_party/oauth2client/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/oauth2client/MODIFICATIONS.diff
diff --git a/third_party/oauth2client/MODIFICATIONS.diff b/third_party/oauth2client/MODIFICATIONS.diff
new file mode 100644
index 0000000000000000000000000000000000000000..3b844773c636422fb2a9e217f4ddbb8ecaf06b38
--- /dev/null
+++ b/third_party/oauth2client/MODIFICATIONS.diff
@@ -0,0 +1,28 @@
+diff --git a/third_party/oauth2client/client.py b/third_party/oauth2client/client.py
+index cd03e38..d82c848 100644
+--- a/third_party/oauth2client/client.py
++++ b/third_party/oauth2client/client.py
+@@ -23,9 +23,8 @@ import base64
+ import clientsecrets
+ import copy
+ import datetime
+-import httplib2
++from .. import httplib2
+ import logging
+-import os
+ import sys
+ import time
+ import urllib
+@@ -35,9 +34,9 @@ from anyjson import simplejson
+
+ HAS_OPENSSL = False
+ try:
+- from oauth2client.crypt import Signer
Vadim Sh. 2014/03/14 18:56:47 I'm sorry for being extra pedantic, but IIUC this
+- from oauth2client.crypt import make_signed_jwt
+- from oauth2client.crypt import verify_signed_jwt_with_certs
++ from .crypt import Signer
++ from .crypt import make_signed_jwt
++ from .crypt import verify_signed_jwt_with_certs
+ HAS_OPENSSL = True
+ except ImportError:
+ pass
« no previous file with comments | « third_party/oauth2client/LICENSE ('k') | third_party/oauth2client/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698