| Index: third_party/google-endpoints/html/parser.py
|
| diff --git a/third_party/google-endpoints/html/parser.py b/third_party/google-endpoints/html/parser.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..541def391d4a9cbcc635e09770c0d509b5f20564
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/html/parser.py
|
| @@ -0,0 +1,8 @@
|
| +from __future__ import absolute_import
|
| +import sys
|
| +__future_module__ = True
|
| +
|
| +if sys.version_info[0] == 3:
|
| + raise ImportError('Cannot import module from python-future source folder')
|
| +else:
|
| + from future.moves.html.parser import *
|
|
|