Fix a regression with mimetype guessing.
Review Request #14269 — Created Dec. 13, 2024 and updated — Latest diff uploaded
RBTools 5.1 introduced new support for filename-based mimetype guessing
usingpuremagic
. This madeguess_mimetype
keyword-only, but we still
had a call site that was passing in positional arguments, causing it to
crash when uploading binary files.This fixes up the call site, and changes
guess_mimetype
to go through
the standard function signature deprecation process so call sites can
continue to pass in positional arguments with a deprecation warning.
Unit tests pass.