guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: shadow: End duplicate warnings with new lines.


From: guix-commits
Subject: 01/03: shadow: End duplicate warnings with new lines.
Date: Wed, 20 Jan 2021 03:13:10 -0500 (EST)

leoprikler pushed a commit to branch master
in repository guix.

commit 239af11a69a588f109d1dcd195f9abe9940cce8c
Author: Leo Prikler <leo.prikler@student.tugraz.at>
AuthorDate: Thu Jan 14 13:53:35 2021 +0100

    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(-)

diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index 4755719..0538fb1 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]