Skip to content

Commit

Permalink
Fix: GsQuickStageCurrentFileCommitCommand is also a WindowCommand
Browse files Browse the repository at this point in the history
# On branch quick_stage
# Changes to be committed:
#	modified:   core/commands/quick_commit.py
#
  • Loading branch information
randy3k committed Aug 30, 2018
1 parent 06dfedc commit 38ab3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/quick_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(self):
)

def on_done(self, commit_message):
self.view.window().status_message("Commiting...")
self.window.status_message("Commiting...")
self.git("add", "--", self.file_path)
self.git("commit", "-q", "-F", "-", stdin=commit_message)
self.window.status_message("Committed successfully.")
Expand Down

0 comments on commit 38ab3d5

Please sign in to comment.