diff -r bd2ed1032b4e -r f38bf44e077f mercurial/upgrade_utils/actions.py --- a/mercurial/upgrade_utils/actions.py Tue May 04 13:28:42 2021 -0400 +++ b/mercurial/upgrade_utils/actions.py Fri Apr 30 16:13:02 2021 -0700 @@ -847,11 +847,11 @@ self.ui.status(_(b'%s\n %s\n\n') % (i.name, i.description)) def has_upgrade_action(self, name): - """ Check whether the upgrade operation will perform this action """ + """Check whether the upgrade operation will perform this action""" return name in self._upgrade_actions_names def print_post_op_messages(self): - """ print post upgrade operation warning messages """ + """print post upgrade operation warning messages""" for a in self.upgrade_actions: if a.postupgrademessage is not None: self.ui.warn(b'%s\n' % a.postupgrademessage)