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.
2 parents 26e98f7 + 2f2982f commit 7414a80Copy full SHA for 7414a80
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