From 22c1e735995b790dab0e59ea5ed0c79e5d198a79 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 27 Feb 2015 16:26:27 -0500 Subject: [PATCH] Fix whitespace in sockapi.py A hardtab was in sockapi.py, making it unable to build on my system. Make the indentation match the rest of the project. --- confluent_server/confluent/sockapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/sockapi.py b/confluent_server/confluent/sockapi.py index 3d02eab8..b8eb2e2b 100644 --- a/confluent_server/confluent/sockapi.py +++ b/confluent_server/confluent/sockapi.py @@ -48,7 +48,7 @@ except AttributeError: import platform if "ppc64" in platform.machine(): SO_PEERCRED = 21 - else: + else: SO_PEERCRED = 17