Share common (global) options between declared build environments using "[env]" section // Resolve #1643 Resolve #790

This commit is contained in:
Ivan Kravets
2019-05-08 20:19:39 +03:00
parent 693304590c
commit 4f98a3fd42
5 changed files with 87 additions and 53 deletions

View File

@ -19,9 +19,8 @@ class PlatformioException(Exception):
def __str__(self): # pragma: no cover
if self.MESSAGE:
return self.MESSAGE.format(
*self.args # pylint: disable=not-an-iterable
)
return self.MESSAGE.format(*self.args # pylint: disable=not-an-iterable
)
return super(PlatformioException, self).__str__()