Skip to content

Commit 5920690

Browse files
committed
line length fix
1 parent b174564 commit 5920690

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

st2stream/st2stream/controllers/v1/stream.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ def get_all(self, end_execution_id=None, end_event=None,
6464
def make_response():
6565
listener = get_listener(name='stream')
6666
app_iter = format(listener.generator(events=events,
67-
action_refs=action_refs,
68-
end_event=end_event,
69-
end_statuses=action_constants.LIVEACTION_COMPLETED_STATES,
70-
end_execution_id=end_execution_id,
71-
execution_ids=execution_ids))
67+
action_refs=action_refs,
68+
end_event=end_event,
69+
end_statuses=action_constants.LIVEACTION_COMPLETED_STATES,
70+
end_execution_id=end_execution_id,
71+
execution_ids=execution_ids))
7272
res = Response(headerlist=[("X-Accel-Buffering", "no"),
7373
('Cache-Control', 'no-cache'),
7474
("Content-Type", "text/event-stream; charset=UTF-8")],

0 commit comments

Comments
 (0)