diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-05-04 12:33:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-04 13:09:00 +0200 |
commit | 25f04945d940841e4dfb38670d7d91e6153c75be (patch) | |
tree | dfac806762513fe33d2a21ad91ff871393e294ad /guix/import | |
parent | 124b921a5e18859d44596706e285ee5c1cc184af (diff) |
import: elpa: Standardize warning message.
* guix/import/elpa.scm (melpa-recipe->origin): Standardize warning
message.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/elpa.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm index 760969d70e..1313a8aa67 100644 --- a/guix/import/elpa.scm +++ b/guix/import/elpa.scm @@ -268,7 +268,7 @@ the package named PACKAGE-NAME." ('gitlab (git-repository->origin recipe (gitlab-repo->url (assq-ref recipe ':repo)))) ('git (git-repository->origin recipe (assq-ref recipe ':url))) (#f #f) ; if we're not using melpa then this stops us printing a warning - (_ (warning (G_ "Unsupported MELPA fetcher: ~a, falling back to unstable MELPA source.~%") + (_ (warning (G_ "unsupported MELPA fetcher: ~a, falling back to unstable MELPA source~%") (assq-ref recipe ':fetcher)) #f))) |