Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Casanovas committed Sep 20, 2019
1 parent e69110a commit 6cd1c4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion O365/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.0.2'
__version__ = '2.0.3'

3 changes: 1 addition & 2 deletions O365/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def __init__(self, credentials, *, protocol=None, main_resource=None, **kwargs):
# for client credential grant flow solely:
# append the default scope if it's not provided
if not scopes:
scopes.append(self.protocol.prefix_scope('.default'))
kwargs['scopes'] = scopes
kwargs['scopes'] = [self.protocol.prefix_scope('.default')]

# set main_resource to blank when it's the 'ME' resource
if self.protocol.default_resource == ME_RESOURCE:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages


VERSION = '2.0.2'
VERSION = '2.0.3'

# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
Expand Down

0 comments on commit 6cd1c4e

Please sign in to comment.