mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-10 00:13:55 -04:00
8 lines
160 B
Python
8 lines
160 B
Python
|
from __future__ import absolute_import
|
||
|
from future.utils import PY3
|
||
|
|
||
|
if PY3:
|
||
|
from html.entities import *
|
||
|
else:
|
||
|
from future.moves.html.entities import *
|