Skip to content

Commit f419e19

Browse files
Merge pull request #114 from Forchapeatl/patch-1
allow binding to celery task
2 parents 3105a87 + dba0454 commit f419e19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ffmpeg_streaming/_process.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ def _monitor(self):
8888
if callable(self.monitor):
8989
duration = get_time('Duration: ', line, duration)
9090
_time = get_time('time=', line, _time)
91-
self.monitor(line, duration, _time, time_left(start_time, _time, duration), self.process)
91+
#FIXME: review the following line and refactor it if it needed
92+
self.monitor(self,line, duration, _time, time_left(start_time, _time, duration), self.process)
9293

9394
Process.out = log
9495

0 commit comments

Comments
 (0)