main.py [194:200]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    chkfile = filepath + "." + method
                    chkfile_uc = filepath + "." + method.upper()  # Uppercase extension? :(
                    if os.path.exists(chkfile) or os.path.exists(chkfile_uc):
                        file_errors = verify_checksum(filepath, method)
                        if file_errors:
                            push_error(errors, filepath, file_errors)
                        else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.py [205:211]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    chkfile = filepath + "." + method
                    chkfile_uc = filepath + "." + method.upper()  # Uppercase extension? :(
                    if os.path.exists(chkfile) or os.path.exists(chkfile_uc):
                        file_errors = verify_checksum(filepath, method)
                        if file_errors:
                            push_error(errors, filepath, file_errors)
                        else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



