@@ -418,7 +418,7 @@ def amend_commit_message(self, cherry_pick_branch):
418418 def pause_after_committing (self , cherry_pick_branch ):
419419 click .echo (
420420 f"""
421- Finished cherry-pick { self .commit_sha1 } into { cherry_pick_branch } \U0001F600
421+ Finished cherry-pick { self .commit_sha1 } into { cherry_pick_branch } \U0001f600
422422--no-push option used.
423423... Stopping here.
424424To continue and push the changes:
@@ -659,7 +659,7 @@ def continue_cherry_pick(self):
659659 ]
660660 self .commit_sha1 = get_full_sha_from_short (short_sha )
661661
662- commits = get_commits_from_backport_branch (base )
662+ commits = get_commits_from_backport_branch (f" { self . upstream } / { base } " )
663663 if len (commits ) == 1 :
664664 commit_message = self .amend_commit_message (cherry_pick_branch )
665665 else :
@@ -697,7 +697,7 @@ def continue_cherry_pick(self):
697697 else :
698698 click .echo (
699699 f"Current branch ({ cherry_pick_branch } ) is not a backport branch. "
700- "Will not continue. \U0001F61B "
700+ "Will not continue. \U0001f61b "
701701 )
702702 set_state (WORKFLOW_STATES .CONTINUATION_FAILED )
703703
@@ -843,12 +843,12 @@ def cherry_pick_cli(
843843):
844844 """cherry-pick COMMIT_SHA1 into target BRANCHES."""
845845
846- click .echo ("\U0001F40D \U0001F352 \u26CF " )
846+ click .echo ("\U0001f40d \U0001f352 \u26cf " )
847847
848848 try :
849849 chosen_config_path , config = load_config (config_path )
850850 except ValueError as exc :
851- click .echo ("You're not inside a Git tree right now! \U0001F645 " , err = True )
851+ click .echo ("You're not inside a Git tree right now! \U0001f645 " , err = True )
852852 click .echo (exc , err = True )
853853 sys .exit (- 1 )
854854 try :
0 commit comments