From abe8f6023b2500519cef60a693d62a68960aa801 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Sat, 12 Jan 2019 19:49:01 +0900 Subject: [PATCH] Fix indent level of netlink_lib.py Change-Id: I91bda8d66c8e5a65f1bb9b63fc33b0f0a10e088a --- neutron/privileged/agent/linux/netlink_lib.py | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/neutron/privileged/agent/linux/netlink_lib.py b/neutron/privileged/agent/linux/netlink_lib.py index 71ce3b091e8..ee6a213d7a3 100644 --- a/neutron/privileged/agent/linux/netlink_lib.py +++ b/neutron/privileged/agent/linux/netlink_lib.py @@ -60,20 +60,20 @@ if nfct_lib: # we call from nfct, otherwise pointers can be truncated and cause # segfaults. nfct.nfct_set_attr.argtypes = [ctypes.c_void_p, - ctypes.c_int, - ctypes.c_void_p] + ctypes.c_int, + ctypes.c_void_p] nfct.nfct_set_attr_u8.argtypes = [ctypes.c_void_p, - ctypes.c_int, - ctypes.c_uint8] + ctypes.c_int, + ctypes.c_uint8] nfct.nfct_set_attr_u16.argtypes = [ctypes.c_void_p, - ctypes.c_int, - ctypes.c_uint16] + ctypes.c_int, + ctypes.c_uint16] nfct.nfct_snprintf.argtypes = [ctypes.c_char_p, - ctypes.c_uint, - ctypes.c_void_p, - ctypes.c_uint, - ctypes.c_uint, - ctypes.c_uint] + ctypes.c_uint, + ctypes.c_void_p, + ctypes.c_uint, + ctypes.c_uint, + ctypes.c_uint] nfct.nfct_new.restype = ctypes.c_void_p nfct.nfct_destroy.argtypes = [ctypes.c_void_p] nfct.nfct_query.argtypes = [ctypes.c_void_p,