From 4dc412a23bb74222f8737eccd3a561e1795847bd Mon Sep 17 00:00:00 2001 From: zhufl Date: Mon, 6 May 2019 17:46:53 +0800 Subject: [PATCH] [Trivial fix]Remove unnecessary slash This is to remove the unncessary slash when the line doesn't exceed the length of 79, to make the code more readable. Change-Id: I53fdb56f001837e833df46cb86cdaab9c710ac99 --- docker/kolla-toolbox/find_disks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/kolla-toolbox/find_disks.py b/docker/kolla-toolbox/find_disks.py index f8175eae05..405852f0b8 100644 --- a/docker/kolla-toolbox/find_disks.py +++ b/docker/kolla-toolbox/find_disks.py @@ -162,8 +162,7 @@ def extract_disk_info(ct, dev, name, use_udev): kwargs['partition_label'] = name kwargs['device'] = dev.find_parent('block').device_node kwargs['partition'] = dev.device_node - kwargs['partition_num'] = \ - re.sub(r'.*[^\d]', '', dev.device_node) + kwargs['partition_num'] = re.sub(r'.*[^\d]', '', dev.device_node) if is_dev_matched_by_name(dev, name, 'strict', use_udev): kwargs['external_journal'] = False # NOTE(jeffrey4l): this is only used for bootstrap osd stage and