From 9d687476eb66c7dd50cd31bd5d7cba3b13a4b41d Mon Sep 17 00:00:00 2001 From: Randy Lai Date: Tue, 28 Aug 2018 02:07:29 -0400 Subject: [PATCH] Fix: GsQuickCommitCommand is a WindowCommand --- core/commands/quick_commit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/quick_commit.py b/core/commands/quick_commit.py index 16a59af82..c4fd1c1bf 100644 --- a/core/commands/quick_commit.py +++ b/core/commands/quick_commit.py @@ -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())