From 08df48e19c748842ffb8e860b1b449f1fe23cd64 Mon Sep 17 00:00:00 2001 From: Alix Cook Date: Fri, 11 Oct 2019 15:24:06 -0400 Subject: [PATCH] pass linting --- src/lavatory/utils/artifactory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lavatory/utils/artifactory.py b/src/lavatory/utils/artifactory.py index 5370ee8..01e1406 100644 --- a/src/lavatory/utils/artifactory.py +++ b/src/lavatory/utils/artifactory.py @@ -103,7 +103,7 @@ def move_artifacts(self, artifacts=None, dest_repository=None): LOG.info("Moving %s to repository %s", artifact['name'], dest_repository) move_url = "{0}/{1}/{2}{3}/{1}/{2}".format(base_endpoint, artifact['path'], artifact['name'], dest_prefix) if self.dryrun: - LOG.info("DRYRUN: would have made request to %s" % move_url) + LOG.info("DRYRUN: would have made request to %s", move_url) continue request = self.artifactory.post(move_url) if not request.ok: