Fix experimental GUI when reading hexadecimal values.
This commit is contained in:
parent
e49891e188
commit
4ce4af4c71
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class Edge:
|
|||
self.to = args[2]
|
||||
self.address = args[4]
|
||||
self.port = args[6]
|
||||
self.options = int(args[8])
|
||||
self.options = int(args[8], 16)
|
||||
self.weight = int(args[10])
|
||||
|
||||
class Subnet:
|
||||
|
|
Loading…
Reference in a new issue