From 6516992ef9877ed7f52737c259887706df321435 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 3 Jan 2016 03:42:33 -0500 Subject: [PATCH] Add a missing argument to the _IP tuple. --- earwigbot/commands/cidr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/cidr.py b/earwigbot/commands/cidr.py index cd9d72b..a4e285e 100644 --- a/earwigbot/commands/cidr.py +++ b/earwigbot/commands/cidr.py @@ -27,7 +27,7 @@ from socket import AF_INET, AF_INET6 from earwigbot.commands import Command -_IP = namedtuple("_IP", ["family", "ip"]) +_IP = namedtuple("_IP", ["family", "ip", "size"]) _Range = namedtuple("_Range", [ "family", "range", "low", "high", "size", "addresses"])