Skip to content

Commit

Permalink
Don't use the async events, because ST2
Browse files Browse the repository at this point in the history
  • Loading branch information
kemayo committed Jan 8, 2016
1 parent 83a8275 commit e0cc708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git/statusbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@


class GitBranchStatusListener(sublime_plugin.EventListener):
def on_activated_async(self, view):
def on_activated(self, view):
view.run_command("git_branch_status")

def on_post_save_async(self, view):
def on_post_save(self, view):
view.run_command("git_branch_status")


Expand Down

0 comments on commit e0cc708

Please sign in to comment.