Skip to content

Commit 3f5ff72

Browse files
committed
system: add newline before source code
This should make it slightly clearer.
1 parent 5e1b650 commit 3f5ff72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mavsdk/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _start_mavsdk_server(system_address=None):
172172
stdout=subprocess.DEVNULL,
173173
stderr=subprocess.DEVNULL)
174174
except FileNotFoundError:
175-
raise Exception("\nIt seems like this installation does not provide an embedded 'mavsdk_server' binary. If you installed from pip, it means that 'mavsdk_server' is not distributed for your platform (yet). You will need to get and run it manually:\n\n\t1. Download 'mavsdk_server' from releases: https://github.com/mavlink/mavsdk/releases (or build from source).\n\t2. Run it, e.g. on port 50051: './mavsdk_server -p 50051'.\n\t3. Set the 'mavsdk_server_address' and port when creating the System: 'drone = System(mavsdk_server_address='localhost', port=50051)\n")
175+
raise Exception("\nIt seems like this installation does not provide an embedded 'mavsdk_server' binary. If you installed from pip, it means that 'mavsdk_server' is not distributed for your platform (yet). You will need to get and run it manually:\n\n\t1. Download 'mavsdk_server' from releases: https://github.com/mavlink/mavsdk/releases (or build from source).\n\t2. Run it, e.g. on port 50051: './mavsdk_server -p 50051'.\n\t3. Set the 'mavsdk_server_address' and port when creating the System:\n\t 'drone = System(mavsdk_server_address='localhost', port=50051)\n")
176176

177177

178178
def cleanup():

0 commit comments

Comments
 (0)