mirror of
https://github.com/qgis/QGIS.git
synced 2025-06-18 00:04:02 -04:00
Merge pull request #1328 from m-kuhn/httplib2
[processing] Fallback to external httplib2 when internal is not available
This commit is contained in:
commit
7414a80dfb
@ -41,7 +41,11 @@ from layergroup import LayerGroup, \
|
||||
UnsavedLayerGroup
|
||||
from workspace import workspace_from_index, \
|
||||
Workspace
|
||||
from processing.algs.admintools import httplib2
|
||||
try:
|
||||
from processing.algs.admintools import httplib2
|
||||
except ImportError:
|
||||
# If compiled without internal httplib2: Load external
|
||||
import httplib2
|
||||
|
||||
|
||||
logger = logging.getLogger('gsconfig.catalog')
|
||||
|
Loading…
x
Reference in New Issue
Block a user