We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 62ba133 commit 2f2982fCopy full SHA for 2f2982f
python/plugins/processing/algs/admintools/geoserver/catalog.py
@@ -41,7 +41,11 @@
41
UnsavedLayerGroup
42
from workspace import workspace_from_index, \
43
Workspace
44
-from processing.algs.admintools import httplib2
+try:
45
+ from processing.algs.admintools import httplib2
46
+except ImportError:
47
+ # If compiled without internal httplib2: Load external
48
+ import httplib2
49
50
51
logger = logging.getLogger('gsconfig.catalog')
0 commit comments