Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,13 @@ def make_uri(self, path):
"""
return path

def isabs(self, path):
"""
Returns True if the path is absolute. For Artifactory paths, this
means checking the URL scheme.
"""
return urllib.parse.urlparse(str(path)).scheme != ""

def normcase(self, path):
return path

Expand Down
Loading