From 04cd772f0dee7804ee095b2f050701b323ddd712 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 28 Jan 2016 00:56:25 +0200 Subject: [PATCH] Fix PyLint warning --- platformio/commands/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/run.py b/platformio/commands/run.py index 6f290ed9..0159de87 100644 --- a/platformio/commands/run.py +++ b/platformio/commands/run.py @@ -56,7 +56,7 @@ def cli(ctx, environment, target, upload_port, # pylint: disable=R0913,R0914 if not disable_auto_clean: try: _clean_pioenvs_dir(util.get_pioenvs_dir()) - except Exception: + except: # pylint: disable=bare-except click.secho( "Can not remove temporary directory `%s`. Please remove " "`.pioenvs` directory from the project manually to avoid "