mirror of https://github.com/ArduPilot/ardupilot
Tools: FilterTestTool fix open .BIN files on case sensitive systems
This commit is contained in:
parent
cd673b5ffd
commit
26d81e3d13
|
@ -51,7 +51,7 @@ if not log_file:
|
|||
root = Tk()
|
||||
root.withdraw()
|
||||
root.focus_force()
|
||||
log_file = askopenfilename(title="Select log file", filetypes=(("log files", ".bin .log"), ("all files", "*.*")))
|
||||
log_file = askopenfilename(title="Select log file", filetypes=(("log files", ".BIN .bin .log"), ("all files", "*.*")))
|
||||
root.update()
|
||||
root.destroy()
|
||||
|
||||
|
|
Loading…
Reference in New Issue