forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue googleapis#18 raised some issues with python3. I really ought t…
…o start moving this library over to python3 as python2.7 is going away. python3 is the future, I should get on that boat. I fixed the way __init__.py works to be compatible with python3. I also updated all of the intra-library imports to make them all consistent in style. Passes test for python2, failes for python3. But as python3 is currently un-supported, that's fine.
- Loading branch information
Toben Archer
committed
Jun 16, 2015
1 parent
4b42d0e
commit 2d1f2df
Showing
5 changed files
with
12 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from contact import Contact | ||
from O365.contact import Contact | ||
import logging | ||
import json | ||
import requests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from O365 import Calendar | ||
from O365.cal import Calendar | ||
import logging | ||
import json | ||
import requests | ||
|
This file was deleted.
Oops, something went wrong.