From 21c60fdd99e37436228cfe8e59f1b8788ea2b58b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 4 Mar 2015 22:27:07 +0200 Subject: [PATCH] Hide PyLint warning with undefined WindowsError exception --- platformio/builder/tools/pioar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/builder/tools/pioar.py b/platformio/builder/tools/pioar.py index 72be678f..e3b2fed4 100644 --- a/platformio/builder/tools/pioar.py +++ b/platformio/builder/tools/pioar.py @@ -11,7 +11,7 @@ MAX_SOURCES_LENGTH = 8000 # Windows CLI has limit with command length to 8192 def _remove_tmpfile(path): try: remove(path) - except WindowsError: + except WindowsError: # pylint: disable=E0602 pass