summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'command.py')
-rw-r--r--command.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/command.py b/command.py
index dc765db0..4087cab5 100644
--- a/command.py
+++ b/command.py
@@ -15,7 +15,6 @@
15import multiprocessing 15import multiprocessing
16import os 16import os
17import optparse 17import optparse
18import platform
19import re 18import re
20import sys 19import 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