From 5f539fdf7ba15f8c74201581145481bf53fff327 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 23 Aug 2014 11:51:18 +0300 Subject: [PATCH] Re-tested with Click 3.2 --- platformio/util.py | 3 +-- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/platformio/util.py b/platformio/util.py index 3db23bde..34a1d785 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -26,7 +26,6 @@ def get_systype(): def get_home_dir(): - home_dir = expanduser("~/.platformio") try: config = get_project_config() if (config.has_section("platformio") and @@ -34,7 +33,7 @@ def get_home_dir(): return config.get("platformio", "home_dir") except NotPlatformProject: pass - return home_dir + return expanduser("~/.platformio") def get_source_dir(): diff --git a/requirements.txt b/requirements.txt index 80c2ca8c..bb4f5a83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -click==3.1 +click==3.2 colorama==0.3.1 pyserial==2.7 requests==2.3.0