diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-01-14 13:53:35 +0100 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-01-20 09:04:57 +0100 |
commit | 239af11a69a588f109d1dcd195f9abe9940cce8c (patch) | |
tree | 5354668e93384d51191157790bdc3b63834ceead | |
parent | eb11e1e180c198564942ff2b448a800de3116e34 (diff) |
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 ~%.
-rw-r--r-- | gnu/system/shadow.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index 47557191f8..0538fb1a24 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -251,7 +251,7 @@ through the internal use of hash tables." (() *unspecified*) (duplicates (warning - (G_ "the following accounts appear more than once:~{ ~a~}") + (G_ "the following accounts appear more than once:~{ ~a~}~%") duplicates)))) (define (assert-unique-group-names groups) @@ -259,7 +259,7 @@ through the internal use of hash tables." (() *unspecified*) (duplicates (warning - (G_ "the following groups appear more than once:~{ ~a~}") + (G_ "the following groups appear more than once:~{ ~a~}~%") duplicates)))) (define (assert-valid-users/groups users groups) |