diff options
-rw-r--r-- | event_log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/event_log.py b/event_log.py index d73511da..45a2c268 100644 --- a/event_log.py +++ b/event_log.py | |||
@@ -101,7 +101,7 @@ class EventLog(object): | |||
101 | Returns: | 101 | Returns: |
102 | A dictionary of the event added to the log. | 102 | A dictionary of the event added to the log. |
103 | """ | 103 | """ |
104 | event = self.Add(project.relpath, success, start, finish, task_name) | 104 | event = self.Add(project.relpath, task_name, start, finish, success) |
105 | if event is not None: | 105 | if event is not None: |
106 | event['project'] = project.name | 106 | event['project'] = project.name |
107 | if project.revisionExpr: | 107 | if project.revisionExpr: |