From 5db1dbd8d19b4d580f4c25e81e3bd9b10157aa42 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 12 Mar 2013 11:49:43 +1100 Subject: [PATCH] autotest: fixed python path for mavtemplate --- Tools/autotest/autotest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index 83d63a51a4..82da2dead5 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -7,6 +7,7 @@ import optparse, fnmatch, time, glob, traceback, signal sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), 'pysim')) sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', '..', 'mavlink', 'pymavlink')) +sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', '..', 'mavlink', 'pymavlink', 'generator')) import util os.environ['PYTHONUNBUFFERED'] = '1'