From b6ab73498a7a062aef72a0d52dbe8bebb73c05ed Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Wed, 13 Feb 2013 15:10:25 +0100 Subject: [PATCH] =?UTF-8?q?[gestion/chsh.py]=20On=20affiche=20un=20shell?= =?UTF-8?q?=20par=20ligne=20plut=C3=B4t=20que=20tout=20leur=20path=20conta?= =?UTF-8?q?t=C3=A9n=C3=A9=20ensemble.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gestion/chsh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gestion/chsh.py b/gestion/chsh.py index e5b11837..de63b908 100755 --- a/gestion/chsh.py +++ b/gestion/chsh.py @@ -42,7 +42,7 @@ shells = [line.strip() for line in lines if not (line.startswith('#') or line.en if not shell in shells: print 'Shell invalide. Les shells valides sont :' - print ''.join(shells) + print '\n'.join(shells) sys.exit(4) adh.chsh(shell)