From da7fe1055a5a4dda62cacf0999b42fac27539d6f Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 19 Aug 2018 01:06:22 +0200 Subject: [PATCH] Tools: add missing import to arducopter.py Fixes undefined names on lines 1406 and 1408 --- Tools/autotest/arducopter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index 3618cfa740..cf05a42c52 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -13,8 +13,8 @@ from pymavlink import mavutil from pysim import util -from common import AutoTest -from common import NotAchievedException, AutoTestTimeoutException +from common import AutoTest, AutoTestTimeoutException +from common import NotAchievedException, PreconditionFailedException # get location of scripts testdir = os.path.dirname(os.path.realpath(__file__))