From d084bdefd004d8bbcffa61e99bd45c07b665cdd8 Mon Sep 17 00:00:00 2001 From: Otthorn Date: Sun, 18 Apr 2021 00:33:30 +0200 Subject: [PATCH] :pencil2: fix typo on nibble --- reverse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reverse.py b/reverse.py index 6c4b271..bd4ca0b 100644 --- a/reverse.py +++ b/reverse.py @@ -58,7 +58,7 @@ def reverse_zone(network): if network.version == 4: boundary = 8 # break to the byte elif network.version == 6: - boundary = 4 # break to the nimble + boundary = 4 # break to the nibble assert network.prefixlen % boundary == 0 length = (network.prefixlen // boundary)