From 38ab3d597be5c77bfa4208bc264b31d199022343 Mon Sep 17 00:00:00 2001 From: Randy Lai Date: Thu, 30 Aug 2018 17:18:20 -0400 Subject: [PATCH] Fix: GsQuickStageCurrentFileCommitCommand is also a WindowCommand # On branch quick_stage # Changes to be committed: # modified: core/commands/quick_commit.py # --- 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..82a6049ac 100644 --- a/core/commands/quick_commit.py +++ b/core/commands/quick_commit.py @@ -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.")