Skip to content

Commit 39bc0bf

Browse files
authored
Merge pull request googleapis#87 from fcollman/master
fixing tabs in inbox.py
2 parents b9281f4 + 4323c3c commit 39bc0bf

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

O365/inbox.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ def getMessages(self, number = 10):
5656
response = requests.get(self.inbox_url,auth=self.auth,params={'$filter':self.filters, '$top':number},verify=self.verify)
5757
log.info('Response from O365: %s', str(response))
5858

59-
#check that there are messages
60-
try:
61-
response.json()['value']
62-
except KeyError as e:
63-
log.debug('no messages')
64-
return False
65-
59+
#check that there are messages
60+
try:
61+
response.json()['value']
62+
except KeyError as e:
63+
log.debug('no messages')
64+
return False
65+
6666
for message in response.json()['value']:
6767
try:
6868
duplicate = False

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
https://github.com/Narcolapser/python-o365'''
3434

3535
setup(name='O365',
36-
version='0.9.13',
36+
version='0.9.14',
3737
description='Python library for working with Microsoft Office 365',
3838
long_description=long_desc,
3939
author='Toben Archer',

0 commit comments

Comments
 (0)