From 5c38cb98faf617ffa4d61963b64275d8f9238679 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 16 Nov 2016 17:32:49 +0200 Subject: [PATCH] Remove debug code --- platformio/commands/run.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platformio/commands/run.py b/platformio/commands/run.py index a018eb58..dee2249b 100644 --- a/platformio/commands/run.py +++ b/platformio/commands/run.py @@ -112,8 +112,7 @@ def cli(ctx, environment, target, upload_port, project_dir, silent, verbose, click.echo() print_summary(results, start_time) - if any([status is False for _, status in results]): - print 90 + if any([status is False for (_, status) in results]): raise exception.ReturnErrorCode(1) return True