weather: Fix type error when reporting CI stats.

* guix/scripts/weather.scm (report-server-coverage): Remove 'missing'
binding above 'queued-subset' call.  Before that 'queued-subset' would
be called with a number instead of a list.
This commit is contained in:
Ludovic Courtès 2018-04-30 15:19:41 +02:00
parent e64a3b436a
commit 7c8b7e35d0
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 4 deletions

View File

@ -208,10 +208,10 @@ unavailable)~%"))
0 queue))) 0 queue)))
(newline) (newline)
(unless (null? missing) (unless (null? missing)
(let ((missing (length missing))) (match (queued-subset queue missing)
(match (queued-subset queue missing) (#f #f)
(#f #f) ((= length queued)
((= length queued) (let ((missing (length missing)))
(format #t (G_ " ~,1f% (~h out of ~h) of the missing items \ (format #t (G_ " ~,1f% (~h out of ~h) of the missing items \
are queued~%") are queued~%")
(* 100. (/ queued missing)) (* 100. (/ queued missing))