From 1c680b457b0a20642e51a8bcd8ef633e04df2758 Mon Sep 17 00:00:00 2001 From: Shuotian Cheng Date: Thu, 7 Dec 2017 23:49:51 -0800 Subject: [PATCH] [intfutil]: Fix python indentation (#166) Signed-off-by: Shu0T1an ChenG --- scripts/intfutil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/intfutil b/scripts/intfutil index 33d418437f6b..6c44a74fdfce 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -53,7 +53,7 @@ def db_port_status_get(db, intf_name, status_type): if status is None: return "N/A" - if status_type == PORT_SPEED and status != "N/A": + if status_type == PORT_SPEED and status != "N/A": status = '{}G'.format(status[:2] if int(status) < 100000 else status[:3]) return status