mavsdk_tests: fix missing space after number

This commit is contained in:
Julian Oes
2020-03-17 12:33:18 +01:00
committed by Nuno Marques
parent 3f1990b083
commit 79387428c6
+1 -1
View File
@@ -449,7 +449,7 @@ class Tester:
elif n == 1 and total == 1:
return text_to_format.format("")
else:
return text_to_format.format(n)
return text_to_format.format(str(n) + " ")
def sigint_handler(self, sig: signal.Signals, frame: FrameType) \
-> NoReturn: