summaryrefslogtreecommitdiff
path: root/guix/http-client.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/http-client.scm')
-rw-r--r--guix/http-client.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/http-client.scm b/guix/http-client.scm
index 6874c51db6..3c5441c38c 100644
--- a/guix/http-client.scm
+++ b/guix/http-client.scm
@@ -262,7 +262,7 @@ Raise an '&http-get-error' condition if downloading fails."
302) ; found (redirection)
(let ((uri (resolve-uri-reference (response-location resp) uri)))
(close-port port)
- (format #t (_ "following redirection to `~a'...~%")
+ (format #t (G_ "following redirection to `~a'...~%")
(uri->string uri))
(loop uri)))
(else
@@ -274,7 +274,7 @@ Raise an '&http-get-error' condition if downloading fails."
(message
(format
#f
- (_ "~a: HTTP download failed: ~a (~s)")
+ (G_ "~a: HTTP download failed: ~a (~s)")
(uri->string uri) code
(response-reason-phrase resp))))))))))))