| Index: third_party/google-endpoints/html/entities.py
|
| diff --git a/third_party/google-endpoints/html/entities.py b/third_party/google-endpoints/html/entities.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..211649e531356f0e9eff7497502b380cd47fe84a
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/html/entities.py
|
| @@ -0,0 +1,7 @@
|
| +from __future__ import absolute_import
|
| +from future.utils import PY3
|
| +
|
| +if PY3:
|
| + from html.entities import *
|
| +else:
|
| + from future.moves.html.entities import *
|
|
|