Fix tab usage

This commit is contained in:
DonLakeFlyer 2019-06-26 12:19:08 -07:00 committed by Andrew Tridgell
parent e7104fb6f0
commit b34b276844

View File

@ -285,7 +285,7 @@ class ManifestGenerator():
platform_frame_regex = re.compile("(?P<board>.+)(-(?P<frame>heli)$)")
m = platform_frame_regex.match(platformdir)
if m is not None:
# This is a heli build
# This is a heli build
platform = m.group("board") # e.g. navio
frame = "heli"
else: