Skip to content

Commit b6ee9ae

Browse files
Fix argument quantity mismatch in reset and revert commands
Signed-off-by: Jacob Stopak <[email protected]>
1 parent c1e9b61 commit b6ee9ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

git_sim/git_sim_reset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def execute(self):
4747
self.fadeout()
4848
self.show_outro()
4949

50-
def build_commit_id_and_message(self, commit):
50+
def build_commit_id_and_message(self, commit, dots=False):
5151
hide_refs = False
5252
if commit == "dark":
5353
commitId = m.Text('', font="Monospace", font_size=20, color=self.scene.fontColor)

git_sim/git_sim_revert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def execute(self):
4444
self.fadeout()
4545
self.show_outro()
4646

47-
def build_commit_id_and_message(self, commit):
47+
def build_commit_id_and_message(self, commit, dots=False):
4848
hide_refs = False
4949
if commit == "dark":
5050
commitId = m.Text('', font="Monospace", font_size=20, color=self.scene.fontColor)

0 commit comments

Comments
 (0)