Skip to content

Commit

Permalink
pass linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Alix Cook committed Oct 11, 2019
1 parent 859e5b1 commit 08df48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lavatory/utils/artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 08df48e

Please sign in to comment.