Skip to content

Commit e0b9324

Browse files
committed
Update Settings_Diff.py
1 parent 3350fa8 commit e0b9324

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Firmware/Tools/Settings_Diff.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ def diff(self):
9090

9191
for thing1 in things1.keys():
9292
if thing1 not in things2.keys():
93-
print('{},{} : only found in file 1'.format(thing1,things1[thing1]))
93+
print('Only found in file 1 : {},{}'.format(thing1,things1[thing1]))
9494

9595
print()
9696

9797
for thing2 in things2.keys():
9898
if thing2 not in things1.keys():
99-
print('{},{} : only found in file 2'.format(thing2,things2[thing2]))
99+
print('Only found in file 2 : {},{}'.format(thing2,things2[thing2]))
100100

101101
print()
102102

@@ -109,7 +109,7 @@ def diff(self):
109109

110110
import argparse
111111

112-
parser = argparse.ArgumentParser(description='SparkFun RTK Firmware Settings Diff')
112+
parser = argparse.ArgumentParser(description='SparkFun RTK Firmware Settings CSV Diff')
113113
parser.add_argument('File1', metavar='File1', type=str, help='The path to the first settings CSV file')
114114
parser.add_argument('File2', metavar='File2', type=str, help='The path to the second settings CSV file')
115115
args = parser.parse_args()

0 commit comments

Comments
 (0)