From 112223314d371d18b3c5ad68d9a1e9d73b4a586f Mon Sep 17 00:00:00 2001 From: flifloo Date: Sun, 1 Mar 2020 14:49:02 +0100 Subject: [PATCH] Oupsi missing arg on insertion in router --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index ce883c6..50aa756 100644 --- a/main.py +++ b/main.py @@ -49,4 +49,4 @@ out = ipv4(args.prefix, ipl, macl) # Insert the list insert_whmcs_ipv4(out, args.interface, db, debug) -insert_router_ipv4(out, "", SSH_HOST, SSH_PORT, SSH_USER, SSH_KEY, debug) +insert_router_ipv4(out, args.interface, SSH_HOST, SSH_PORT, SSH_USER, SSH_KEY, debug)