Browse Source

Add a missing argument to the _IP tuple.

tags/v0.3
Ben Kurtovic 8 years ago
parent
commit
6516992ef9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/commands/cidr.py

+ 1
- 1
earwigbot/commands/cidr.py View File

@@ -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"])



Loading…
Cancel
Save