mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 11:06:04 +08:00
mavlink_{shell,ulog_streaming}.py: show full error output when pymavlink import fails
This commit is contained in:
@@ -18,7 +18,8 @@ try:
|
|||||||
except:
|
except:
|
||||||
print("Failed to import pymavlink.")
|
print("Failed to import pymavlink.")
|
||||||
print("You may need to install it with 'pip install pymavlink pyserial'")
|
print("You may need to install it with 'pip install pymavlink pyserial'")
|
||||||
exit(-1)
|
print("")
|
||||||
|
raise
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,8 +17,9 @@ try:
|
|||||||
from pymavlink import mavutil
|
from pymavlink import mavutil
|
||||||
except:
|
except:
|
||||||
print("Failed to import pymavlink.")
|
print("Failed to import pymavlink.")
|
||||||
print("You may need to install it with 'pip install pymavlink'")
|
print("You may need to install it with 'pip install pymavlink pyserial'")
|
||||||
exit(-1)
|
print("")
|
||||||
|
raise
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user