Skip to content

Commit

Permalink
Merge pull request #4 from GuillaumeBibaut/master
Browse files Browse the repository at this point in the history
fix select_changes() callback method name
  • Loading branch information
m-hall committed Mar 31, 2015
2 parents 9e2da1e + 20abfc3 commit 14e0a41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions svn_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def show_message_panel(self):
"""Opens an input panel to get the commit message"""
sublime.active_window().show_input_panel('Commit message', '', self.on_done_input, self.nothing, self.nothing)

def on_complete(self, values):
def on_complete_select(self, values):
"""Handles completion of the MultiSelect"""
self.files = values
self.show_message_panel()
Expand Down Expand Up @@ -524,7 +524,7 @@ def revert(self):
"""Runs the revert command on the sepcified files."""
self.run_command('revert', self.files)

def on_complete(self, values):
def on_complete_select(self, values):
"""Handles completion of the MultiSelect"""
self.files = values
self.revert()
Expand Down

0 comments on commit 14e0a41

Please sign in to comment.