From c47951e424b93f7df1da7c6645983f1d8cc541f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Fri, 30 May 2014 11:27:22 +0200 Subject: [PATCH] [fix] Do not force json encoding - remove previous compatibility --- bin/yunohost | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/yunohost b/bin/yunohost index 77814aea5..bb78297bd 100755 --- a/bin/yunohost +++ b/bin/yunohost @@ -32,10 +32,7 @@ if __name__ == '__main__': json = True sys.argv.remove('--json') - ## Compatibility with previous moulinette - if not os.isatty(1): - json = True - + # Retrieve remaining arguments args = list(sys.argv) args.pop(0)