Fix minor ugv_cmd issue

This commit is contained in:
Alex Mikhalev 2019-05-30 18:23:15 -07:00
parent 6965f03068
commit 990dc93f8c

View File

@ -9,7 +9,7 @@ import yaml
try: try:
from yaml import CLoader as YamlLoader, CDumper as YamlDumper from yaml import CLoader as YamlLoader, CDumper as YamlDumper
except ImportError: except ImportError:
from yaml import YamlLoader, YamlDumper from yaml import Loader as YamlLoader, Dumper as YamlDumper
import types import types
from ugv import UGVComms from ugv import UGVComms