Skip to content

Commit d70b5f2

Browse files
committed
Merge pull request apenwarr#13 from shaiay/master
Fixed issue apenwarr#12
2 parents 53d5260 + 3f2de26 commit d70b5f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def onroutes(routestr):
554554
if auto_nets:
555555
for line in routestr.strip().split('\n'):
556556
(family, ip, width) = line.split(',', 2)
557-
fw.auto_nets.append((family, ip, int(width)))
557+
fw.auto_nets.append((int(family), ip, int(width)))
558558

559559
# we definitely want to do this *after* starting ssh, or we might end
560560
# up intercepting the ssh connection!

0 commit comments

Comments
 (0)