Skip to content

Commit

Permalink
(WIP) Fixes nasa#72, upgrade PyQt4 to PyQt5 and implement other fixes…
Browse files Browse the repository at this point in the history
… as needed
  • Loading branch information
lbleier-GSFC committed May 7, 2020
1 parent 1f897ef commit a60cc54
Show file tree
Hide file tree
Showing 12 changed files with 4,015 additions and 4,502 deletions.
4 changes: 3 additions & 1 deletion RoutingService.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ def run(self):
# Add Host to the list if not already in list
#
if hostIpAddress not in self.ipAddressesList:
hostName = f'Spacecraft {len(self.spacecraftNames)}'
## MAKE SURE THERE'S NO SPACE BETWEEN "Spacecraft"
## AND THE FIRST CURLY BRACE!!!
hostName = f'Spacecraft{len(self.spacecraftNames)}'
my_hostName_as_bytes = hostName.encode()
print("Detected", hostName, "at", hostIpAddress)
self.ipAddressesList.append(hostIpAddress)
Expand Down
1,621 changes: 721 additions & 900 deletions Subsystems/cmdGui/CommandSystemDialog.py

Large diffs are not rendered by default.

Loading

0 comments on commit a60cc54

Please sign in to comment.