diff --git a/svn_commands.py b/svn_commands.py index 4a6455c..ab06e9c 100644 --- a/svn_commands.py +++ b/svn_commands.py @@ -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() @@ -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()