Quellcode durchsuchen

Fix ranges with size 0.

tags/v0.3
Ben Kurtovic vor 8 Jahren
Ursprung
Commit
66ef969f82
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      earwigbot/commands/cidr.py

+ 1
- 1
earwigbot/commands/cidr.py Datei anzeigen

@@ -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



Laden…
Abbrechen
Speichern