Fixing missing import for os.path.exists

pull/2735/head
Brian Daniels 2016-09-17 21:12:47 -05:00
parent c19dd19f9c
commit ba5ab753b1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ limitations under the License.
"""
import re
from os import remove
from os.path import join, splitext
from os.path import join, splitext, exists
from tools.toolchains import mbedToolchain, TOOLCHAIN_PATHS
from tools.hooks import hook_tool