me
/
guix
Archived
1
0
Fork 0

shadow: End duplicate warnings with new lines.

The change from formatted message causes the line to no longer automatically
be ended.  This will need to be reverted once again, when duplicate names
become hard errors.

* gnu/system/shadow.scm (assert-unique-account-names)
(assert-unique-group-names): End format strings in ~%.
master
Leo Prikler 2021-01-14 13:53:35 +01:00
parent eb11e1e180
commit 239af11a69
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ through the internal use of hash tables."
(() *unspecified*) (() *unspecified*)
(duplicates (duplicates
(warning (warning
(G_ "the following accounts appear more than once:~{ ~a~}") (G_ "the following accounts appear more than once:~{ ~a~}~%")
duplicates)))) duplicates))))
(define (assert-unique-group-names groups) (define (assert-unique-group-names groups)
@ -259,7 +259,7 @@ through the internal use of hash tables."
(() *unspecified*) (() *unspecified*)
(duplicates (duplicates
(warning (warning
(G_ "the following groups appear more than once:~{ ~a~}") (G_ "the following groups appear more than once:~{ ~a~}~%")
duplicates)))) duplicates))))
(define (assert-valid-users/groups users groups) (define (assert-valid-users/groups users groups)