From 32adc5038e610e5cbb34c8a805a5f1fedc0612e4 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 7 Jul 2016 17:51:26 -0400 Subject: [PATCH] Fix codestyle --- uvloop/loop.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uvloop/loop.pyx b/uvloop/loop.pyx index f1d7593..96c0726 100644 --- a/uvloop/loop.pyx +++ b/uvloop/loop.pyx @@ -806,7 +806,7 @@ cdef class Loop: if reuse_port: self._sock_set_reuseport(tcp._fileno()) - if addr.sa_family== uv.AF_INET6: + if addr.sa_family == uv.AF_INET6: # Disable IPv4/IPv6 dual stack support (enabled by # default on Linux) which makes a single socket # listen on both address families.