Blame SOURCES/bz1710063-2-oauth2client-fix-python3-encoding.patch

4d1913
--- ClusterLabs-resource-agents-e711383f/bundled/gcp/google-cloud-sdk/lib/third_party/oauth2client/client.py	1980-01-01 09:00:00.000000000 +0100
4d1913
+++ ClusterLabs-resource-agents-e711383f/bundled/gcp/google-cloud-sdk/lib/third_party/oauth2client/client.py.new	2019-05-28 10:42:54.366396838 +0200
4d1913
@@ -813,7 +813,7 @@
4d1913
 
4d1913
         logger.info('Refreshing access_token')
4d1913
         resp, content = http_request(
4d1913
-            self.token_uri.encode('idna'), method='POST',
4d1913
+            self.token_uri, method='POST',
4d1913
             body=body, headers=headers)
4d1913
         content = _helpers._from_bytes(content)
4d1913
         if resp.status == http_client.OK: