changed board util copy/paste to copy the whole line instead of just the IP

This commit is contained in:
UpstreamData
2022-01-25 16:00:22 -07:00
parent 1c0b5e6441
commit e7a45efe15

View File

@@ -11,7 +11,8 @@ def copy_from_table(table):
copy_values = [] copy_values = []
for each in selection: for each in selection:
try: try:
value = table.item(each)["values"][0] # value = table.item(each)["values"][0]
value = table.item(each)["values"]
copy_values.append(str(value)) copy_values.append(str(value))
except: except:
pass pass