summaryrefslogtreecommitdiffstats
path: root/subcmds/abandon.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/abandon.py')
-rw-r--r--subcmds/abandon.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/subcmds/abandon.py b/subcmds/abandon.py
index 896b348f..1499c75e 100644
--- a/subcmds/abandon.py
+++ b/subcmds/abandon.py
@@ -12,7 +12,7 @@
12# See the License for the specific language governing permissions and 12# See the License for the specific language governing permissions and
13# limitations under the License. 13# limitations under the License.
14 14
15from collections import defaultdict 15import collections
16import functools 16import functools
17import itertools 17import itertools
18import sys 18import sys
@@ -88,8 +88,8 @@ It is equivalent to "git branch -D <branchname>".
88 88
89 def Execute(self, opt, args): 89 def Execute(self, opt, args):
90 nb = args[0].split() 90 nb = args[0].split()
91 err = defaultdict(list) 91 err = collections.defaultdict(list)
92 success = defaultdict(list) 92 success = collections.defaultdict(list)
93 aggregate_errors = [] 93 aggregate_errors = []
94 all_projects = self.GetProjects( 94 all_projects = self.GetProjects(
95 args[1:], all_manifests=not opt.this_manifest_only 95 args[1:], all_manifests=not opt.this_manifest_only