Fix a bad six rename.

Fixes #77.
This commit is contained in:
Craig Citro
2014-11-21 08:46:53 -08:00
parent 8b76049d0f
commit 4de95cd5df

View File

@@ -1739,7 +1739,7 @@ class OAuth2WebServerFlow(Flow):
if self.device_uri is None:
raise ValueError('The value of device_uri must not be None.')
body = urllib.urlencode({
body = urllib.parse.urlencode({
'client_id': self.client_id,
'scope': self.scope,
})