From 9af408b4b9e310f37c86845fdfeb95dbfc2a4b97 Mon Sep 17 00:00:00 2001 From: offa Date: Fri, 21 Feb 2025 08:59:36 +0100 Subject: [PATCH] Replace _make_child_relpath() with public joinpath() --- artifactory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artifactory.py b/artifactory.py index b27180f..ae75199 100755 --- a/artifactory.py +++ b/artifactory.py @@ -1923,7 +1923,7 @@ def _make_child(self, args): return obj def _make_child_relpath(self, args): - obj = super(ArtifactoryPath, self)._make_child_relpath(args) + obj = super(ArtifactoryPath, self).joinpath(args) obj.auth = self.auth obj.verify = self.verify obj.cert = self.cert