Skip to content

Commit

Permalink
Merge pull request #1328 from m-kuhn/httplib2
Browse files Browse the repository at this point in the history
[processing] Fallback to external httplib2 when internal is not available
  • Loading branch information
alexbruy committed May 7, 2014
2 parents 26e98f7 + 2f2982f commit 7414a80
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@
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')
Expand Down

0 comments on commit 7414a80

Please sign in to comment.