Fix signature of SCMClient.amend_commit_description.
Review Request #14322 — Created Feb. 3, 2025 and submitted — Latest diff uploaded
The signature of the base
SCMClient.amend_commit_descriptionmethod
has therevisionsparameter as keyword-only. Unfortunately, subclasses
that implement this method do not, and the stamp method does not invoke
it as such. This change fixes the base class so any future implementors
do not mistakenly copy that and then haverbt stamporrbt post -s
crash.
Ran unit tests.