From 239af11a69a588f109d1dcd195f9abe9940cce8c Mon Sep 17 00:00:00 2001 From: Leo Prikler Date: Thu, 14 Jan 2021 13:53:35 +0100 Subject: 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 ~%. --- gnu/system/shadow.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/system') 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) -- cgit v1.2.3