diff options
Diffstat (limited to 'subcmds/abandon.py')
-rw-r--r-- | subcmds/abandon.py | 6 |
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 | ||
15 | from collections import defaultdict | 15 | import collections |
16 | import functools | 16 | import functools |
17 | import itertools | 17 | import itertools |
18 | import sys | 18 | import 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 |