Support Python2 ipaddr library.

pull/32/head
Federico Ceratto 11 years ago
parent ac8d987392
commit 68be70af24

@ -14,7 +14,10 @@ from string import ascii_letters, digits
from werkzeug.wrappers import Request
from werkzeug.exceptions import BadRequest
import ipaddress
try:
import ipaddress
except ImportError:
import ipaddr as ipaddress
def anonymize(remote_addr):

Loading…
Cancel
Save