From 146d430695c85823f11233ee7417e078caaf1f8c Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 25 May 2015 13:17:50 +0300 Subject: [PATCH] Revert CI detecting --- platformio/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/util.py b/platformio/util.py index d999380e..6477df7e 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -176,7 +176,7 @@ def change_filemtime(path, time): def is_ci(): - return os.environ.get("CI", "").lower() == "true" + return os.getenv("CI", "").lower() == "true" def exec_command(*args, **kwargs):