Skip to content

Commit

Permalink
Merge pull request #1001 from divmain/quick_stage
Browse files Browse the repository at this point in the history
Fix: GsQuickStageCurrentFileCommitCommand is also a WindowCommand
  • Loading branch information
randy3k committed Aug 31, 2018
2 parents f553da5 + 38ab3d5 commit de9caff
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 de9caff

Please sign in to comment.