mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-01 07:44:08 +08:00
improve ImportError verbosity for yaml
This commit is contained in:
parent
43f78705ab
commit
8efb2bbe10
@ -5,8 +5,11 @@
|
||||
# precompiled and thus message generation will be much faster
|
||||
|
||||
import os
|
||||
import yaml
|
||||
import errno
|
||||
try:
|
||||
import yaml
|
||||
except ImportError:
|
||||
raise ImportError("Failed to import yaml. You may need to install it with 'sudo pip install pyyaml")
|
||||
|
||||
import genmsg.msgs
|
||||
import gencpp
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user