Skip to content
Snippets Groups Projects
Commit 193993c5 authored by Julian Oes's avatar Julian Oes Committed by Lorenz Meier
Browse files

px_uploader: fix typo and Python 3 issue

parent b0ec64ef
Branches
Tags
No related merge requests found
......@@ -333,8 +333,8 @@ class uploader(object):
length = self.__recv_int()
value = self.__recv(length)
self.__getSync()
peices = value.split(",")
return peices
pieces = value.split(b",")
return pieces
def __drawProgressBar(self, label, progress, maxVal):
if maxVal < progress:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment