From 4ce4af4c712c80d08630767ec34787253da1021b Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 17 Apr 2010 12:03:08 +0200 Subject: [PATCH] Fix experimental GUI when reading hexadecimal values. --- gui/Tinc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/Tinc.py b/gui/Tinc.py index d4dddd26..fdf41be1 100755 --- a/gui/Tinc.py +++ b/gui/Tinc.py @@ -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: -- 2.20.1