From 31dafa4e5090f35abe285741cc44e8f7bba5929c Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Wed, 23 Sep 2020 17:07:18 -0600 Subject: [PATCH] fix column width for Beacon RSSI --- lf_cisco_power.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lf_cisco_power.py b/lf_cisco_power.py index 256cf804..70f27d21 100755 --- a/lf_cisco_power.py +++ b/lf_cisco_power.py @@ -399,10 +399,12 @@ def main(): worksheet.set_column(col, col, 15) # Set width worksheet.write(row, col, 'Last\nMCS\n', dpeach_bold); col += 1 if(rssi_to_use == "beacon"): + worksheet.set_column(col, col, 10) # Set width worksheet.write(row, col, 'Beacon\nRSSI USED\n', dpeach_bold); col += 1 worksheet.set_column(col, col, 10) # Set width worksheet.write(row, col, 'Combined\nRSSI\n', dpeach_bold); col += 1 else: + worksheet.set_column(col, col, 10) # Set width worksheet.write(row, col, 'Beacon\nRSSI\n', dpeach_bold); col += 1 worksheet.set_column(col, col, 10) # Set width worksheet.write(row, col, 'Combined\nRSSI USED\n', dpeach_bold); col += 1