We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdcd65a commit 8b0e22aCopy full SHA for 8b0e22a
PropellerLoad.py
@@ -58,14 +58,14 @@ def get_ports(self):
58
self.logger.info("Generating ports list")
59
60
# Get COM ports
61
- success, out, err = loader(self, ["-P"])
+ (success, out, err) = loader(self, ["-P"])
62
if success:
63
self.ports = out.splitlines()
64
else:
65
self.logger.debug('COM Port request returned %s', err)
66
67
# Get Wi-Fi ports
68
- success, out, err = loader(self, ["-W"])
+ (success, out, err) = loader(self, ["-W"])
69
70
self.wports = out.splitlines()
71
# Extract Wi-Fi module names and sort them
@@ -116,7 +116,7 @@ def download(self, action, file_to_load, com_port):
116
command.extend([file_to_load.name.encode('ascii', 'ignore').replace('\\', '/')])
117
118
# Download
119
- success, out, err = loader(self, command)
+ (success, out, err) = loader(self, command)
120
121
# Return results
122
return success, out or '', err or ''
0 commit comments