From 309b87f1f5ce74034630176e4831e5fb633e6e1c Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Sat, 28 Mar 2015 20:35:00 -0400 Subject: [PATCH] Fix checkout command. --- svn_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svn_commands.py b/svn_commands.py index c4bc7fc..4a6455c 100644 --- a/svn_commands.py +++ b/svn_commands.py @@ -817,7 +817,7 @@ def __init__(self, window): def on_done_input(self, value): """Handles completion of the input panel""" - self.run_command('checkout', self.files) + self.run_command('checkout', [value, self.files[0]]) def run(self, paths=None, group=-1, index=-1): """Runs the command"""