Allow Djblets to patch collections when running rbext.
Review Request #12449 — Created July 10, 2022 and submitted — Latest diff uploaded
Most of our command line tools were updated to allow Djblets to patch
thecollections
module on Python 3.10, butrbext
was not. This meant
that if you're using Python 3.10, you're unable to invokerbext
at all
on Python 3.10. Whether this has been hit in the wild is unknown, but
it's blocking a new CI pipeline.We now
import djblets
early in the module, giving Djblets the
opportunity to apply the patch.
Successfully ran
rbext
using Python 3.10.