Skip to content

Commit

Permalink
Fix: branch is passed through kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed Jul 11, 2017
1 parent 4795106 commit b7198fa
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 b7198fa

Please sign in to comment.