Skip to content

Commit

Permalink
Fix brokenness on Windows Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
omad committed Jan 5, 2017
1 parent 4c45684 commit 5dcc15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacube/index/postgres/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ def remove_location(self, dataset_id, uri):
:returns bool: Was the location deleted?
"""
scheme, body = uri.split(':')
scheme, body = _split_uri(uri)
res = self._connection.execute(
delete(DATASET_LOCATION).where(
and_(
Expand Down

0 comments on commit 5dcc15b

Please sign in to comment.