diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,6 @@ | |||
15 | import multiprocessing | 15 | import multiprocessing |
16 | import os | 16 | import os |
17 | import optparse | 17 | import optparse |
18 | import platform | ||
19 | import re | 18 | import re |
20 | import sys | 19 | import sys |
21 | 20 | ||
@@ -58,11 +57,13 @@ class Command(object): | |||
58 | # it is the number of parallel jobs to default to. | 57 | # it is the number of parallel jobs to default to. |
59 | PARALLEL_JOBS = None | 58 | PARALLEL_JOBS = None |
60 | 59 | ||
61 | def __init__(self, repodir=None, client=None, manifest=None, gitc_manifest=None): | 60 | def __init__(self, repodir=None, client=None, manifest=None, gitc_manifest=None, |
61 | git_event_log=None): | ||
62 | self.repodir = repodir | 62 | self.repodir = repodir |
63 | self.client = client | 63 | self.client = client |
64 | self.manifest = manifest | 64 | self.manifest = manifest |
65 | self.gitc_manifest = gitc_manifest | 65 | self.gitc_manifest = gitc_manifest |
66 | self.git_event_log = git_event_log | ||
66 | 67 | ||
67 | # Cache for the OptionParser property. | 68 | # Cache for the OptionParser property. |
68 | self._optparse = None | 69 | self._optparse = None |