Skip to content

Commit

Permalink
Merge pull request #690 from divmain/randy3k/fix_cherrypick
Browse files Browse the repository at this point in the history
branch is passed through kwargs
  • Loading branch information
divmain committed Jul 12, 2017
2 parents 4795106 + b7198fa commit e51c47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/cherry_pick.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class GsCherryPickCommand(GsLogByBranchCommand):

def log(self, **kwargs):
kwargs["cherry"] = True
kwargs["start_end"] = ("", self._branch)
kwargs["start_end"] = ("", kwargs["branch"])
return super().log(**kwargs)

def do_action(self, commit_hash, **kwargs):
Expand Down

0 comments on commit e51c47a

Please sign in to comment.