From c3a16ab8c75e66ce611f50a5cf75e3a85f041813 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 6 Oct 2016 19:41:45 +0300 Subject: [PATCH] Fix update operation in package manager --- platformio/__init__.py | 2 +- platformio/managers/package.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index 5e2e1136..d59efecb 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 2, "0a4") +VERSION = (3, 2, "0a5") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/package.py b/platformio/managers/package.py index e1fcae32..d948e624 100644 --- a/platformio/managers/package.py +++ b/platformio/managers/package.py @@ -497,7 +497,7 @@ class BasePkgManager(PkgRepoMixin, PkgInstallerMixin): requirements=None, only_check=False): name, requirements, url = self.parse_pkg_name(name, requirements) - package_dir = self.get_package_dir(name, requirements, url) + package_dir = self.get_package_dir(name, None, url) if not package_dir: click.secho( "%s @ %s is not installed" % (name, requirements or "*"),