mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 02:55:07 +08:00
px_uploader: fix Python3 upload
This fixes the error below when using Python3:
File "Tools/px_uploader.py", line 128, in
__init__
self.image.append('\xff')
TypeError: an integer is required
This commit is contained in:
@@ -125,7 +125,7 @@ class firmware(object):
|
|||||||
|
|
||||||
# pad image to 4-byte length
|
# pad image to 4-byte length
|
||||||
while ((len(self.image) % 4) != 0):
|
while ((len(self.image) % 4) != 0):
|
||||||
self.image.append('\xff')
|
self.image.extend(b'\xff')
|
||||||
|
|
||||||
def property(self, propname):
|
def property(self, propname):
|
||||||
return self.desc[propname]
|
return self.desc[propname]
|
||||||
|
|||||||
Reference in New Issue
Block a user