Skip to content

Commit

Permalink
Port listing issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
manahter committed May 8, 2021
1 parent 5f0b854 commit b511cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion machine/connection/props.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def set_isconnected(self, value):
bpy.ops.ncnc.communication(start=False)

def get_ports(self, context):
return [(i.device, str(i), i.name or "") for i in comports()]
return [(i.device, str(i), i.name or i.device) for i in comports()]

isconnected: BoolProperty(
name="IsConnected",
Expand Down

0 comments on commit b511cfe

Please sign in to comment.