diff options
Diffstat (limited to 'subcmds/forall.py')
-rw-r--r-- | subcmds/forall.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py index 0a897357..9a02c49f 100644 --- a/subcmds/forall.py +++ b/subcmds/forall.py | |||
@@ -16,21 +16,20 @@ import errno | |||
16 | import functools | 16 | import functools |
17 | import io | 17 | import io |
18 | import multiprocessing | 18 | import multiprocessing |
19 | import re | ||
20 | import os | 19 | import os |
20 | import re | ||
21 | import signal | 21 | import signal |
22 | import sys | ||
23 | import subprocess | 22 | import subprocess |
23 | import sys | ||
24 | 24 | ||
25 | from color import Coloring | 25 | from color import Coloring |
26 | from command import ( | 26 | from command import Command |
27 | DEFAULT_LOCAL_JOBS, | 27 | from command import DEFAULT_LOCAL_JOBS |
28 | Command, | 28 | from command import MirrorSafeCommand |
29 | MirrorSafeCommand, | 29 | from command import WORKER_BATCH_SIZE |
30 | WORKER_BATCH_SIZE, | ||
31 | ) | ||
32 | from error import ManifestInvalidRevisionError | 30 | from error import ManifestInvalidRevisionError |
33 | 31 | ||
32 | |||
34 | _CAN_COLOR = [ | 33 | _CAN_COLOR = [ |
35 | "branch", | 34 | "branch", |
36 | "diff", | 35 | "diff", |