File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '3.36 '
62
+ version = '3.37 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '3.36 '
64
+ release = '3.37 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -1564,7 +1564,7 @@ def finish(self, query_params):
1564
1564
# Check CSRF token
1565
1565
1566
1566
if self .csrf_token_session_key not in self .session :
1567
- raise self .BadStateError ("Missing CSRF token in session." )
1567
+ raise self .BadStateException ("Missing CSRF token in session." )
1568
1568
csrf_token_from_session = self .session [self .csrf_token_session_key ]
1569
1569
if len (csrf_token_from_session ) <= 20 :
1570
1570
raise AssertionError ("CSRF token unexpectedly short: %r" % (csrf_token_from_session ,))
@@ -1598,7 +1598,7 @@ def finish(self, query_params):
1598
1598
full_message = error
1599
1599
if error_description is not None :
1600
1600
full_message += ": " + error_description
1601
- raise self .ProviderError (full_message )
1601
+ raise self .ProviderException (full_message )
1602
1602
1603
1603
# If everything went ok, make the network call to get an access token.
1604
1604
Original file line number Diff line number Diff line change 3
3
]
4
4
5
5
# TODO(kelkabany): We need to auto populate this as done in the v1 SDK.
6
- __version__ = '3.36 '
6
+ __version__ = '3.37 '
7
7
8
8
import contextlib
9
9
import json
Original file line number Diff line number Diff line change 31
31
else :
32
32
url_encode = urllib .urlencode
33
33
34
- SDK_VERSION = "3.36 "
34
+ SDK_VERSION = "3.37 "
35
35
36
36
TRUSTED_CERT_FILE = pkg_resources .resource_filename (__name__ , 'trusted-certs.crt' )
37
37
Original file line number Diff line number Diff line change 25
25
26
26
dist = setup (
27
27
name = 'dropbox' ,
28
- version = '3.36 ' ,
28
+ version = '3.37 ' ,
29
29
description = 'Official Dropbox API Client' ,
30
30
author = 'Dropbox' ,
31
31
author_email = 'dev-platform@dropbox.com' ,
You can’t perform that action at this time.
0 commit comments