Skip to content

Commit 2d87e8b

Browse files
committed
fix for GAE import
1 parent ad8abfa commit 2d87e8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiniu/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import httplib
44

5-
if not getattr(httplib, "_IMPLEMENTATION", False): # httplib._IMPLEMENTATION is "gae" on GAE
5+
if getattr(httplib, "_IMPLEMENTATION") != "gae": # httplib._IMPLEMENTATION is "gae" on GAE
66
import httplib_chunk as httplib
77

88
import json

0 commit comments

Comments
 (0)