Browse Source

Fix ranges with size 0.

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

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

@@ -129,7 +129,7 @@ class CIDR(Command):
bin_ips = ["".join(
bin(ord(octet))[2:].zfill(8) for octet in ip.ip) for ip in ips]
for i, ip in enumerate(ips):
if ip.size:
if ip.size is not None:
suffix = "X" * (len(bin_ips[i]) - ip.size)
bin_ips[i] = bin_ips[i][:ip.size] + suffix



Loading…
Cancel
Save