From 464259da91717baa243f9bb8b2bdaffa26bb6a9e Mon Sep 17 00:00:00 2001 From: "Jared K. Smith" Date: Tue, 30 Aug 2016 06:17:22 -0400 Subject: [PATCH] Add missing space --- github/Requester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/Requester.py b/github/Requester.py index 2527f015..0bb07d02 100644 --- a/github/Requester.py +++ b/github/Requester.py @@ -338,7 +338,7 @@ class Requester: headers = {} if url.username and url.password: auth = '%s:%s' % (url.username, url.password) - if atLeastPython3 and isinstance(auth,str): + if atLeastPython3 and isinstance(auth, str): headers['Proxy-Authorization'] = 'Basic ' + base64.b64encode(auth.encode()).decode() else: headers['Proxy-Authorization'] = 'Basic ' + base64.b64encode(auth)