Skip to content

Commit ad577e5

Browse files
jerjouJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Add appengine workaround for oauth (GoogleCloudPlatform#628)
1 parent 0f9a2fd commit ad577e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1+
import os.path
2+
13
from google.appengine.ext import vendor
24

35
# Add any libraries installed in the "lib" folder.
46
vendor.add('lib')
7+
8+
# Patch os.path.expanduser. This should be fixed in GAE
9+
# versions released after Nov 2016.
10+
os.path.expanduser = lambda path: path

0 commit comments

Comments
 (0)