Skip to content

Commit

Permalink
Use %s instead of %S when talking about artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed Jun 16, 2013
1 parent 5466688 commit 4934dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maven-fetch.el
Expand Up @@ -52,9 +52,9 @@
returning true on success."
(let ((jarfile (maven-fetch-artifact-jar artifact)))
(if (file-exists-p jarfile)
(format "Artifact %S already downloaded" artifact)
(format "Artifact %s already downloaded" artifact)
(let ((artifact-arg "-Dartifact=%s:%s:%s:javadoc"))
(message "Maven is fetching %S ..." artifact)
(message "Maven is fetching %s ..." artifact)
(zerop
(call-process maven-program-name nil nil nil
maven-fetch-command
Expand Down Expand Up @@ -86,7 +86,7 @@ An artifact is specified by a sequence of three strings:
(dolist (artifact artifacts)
(if (maven-fetch artifact)
(javadoc-add-roots (maven-fetch-unpack artifact))
(error "Failed to fetch %S" artifact))))
(error "Failed to fetch %s" artifact))))

(provide 'maven-fetch)

Expand Down

0 comments on commit 4934dfb

Please sign in to comment.