Skip to content

Commit

Permalink
Fix: GsQuickCommitCommand is a WindowCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed Aug 28, 2018
1 parent 06dfedc commit 9d68747
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 @@ -24,7 +24,7 @@ def run(self):
)

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

0 comments on commit 9d68747

Please sign in to comment.