diff options
Diffstat (limited to 'subcmds/checkout.py')
-rw-r--r-- | subcmds/checkout.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subcmds/checkout.py b/subcmds/checkout.py index 51ac4833..c8a09a8e 100644 --- a/subcmds/checkout.py +++ b/subcmds/checkout.py | |||
@@ -34,10 +34,11 @@ The command is equivalent to: | |||
34 | repo forall [<project>...] -c git checkout <branchname> | 34 | repo forall [<project>...] -c git checkout <branchname> |
35 | """ | 35 | """ |
36 | 36 | ||
37 | def Execute(self, opt, args): | 37 | def ValidateOptions(self, opt, args): |
38 | if not args: | 38 | if not args: |
39 | self.Usage() | 39 | self.Usage() |
40 | 40 | ||
41 | def Execute(self, opt, args): | ||
41 | nb = args[0] | 42 | nb = args[0] |
42 | err = [] | 43 | err = [] |
43 | success = [] | 44 | success = [] |