mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
9 lines
233 B
Python
9 lines
233 B
Python
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 *
|