Skip to content

Commit

Permalink
Quick update to FileVideoStream code
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosebr1 committed Aug 18, 2018
1 parent da34855 commit 3ecf7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imutils/video/filevideostream.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def read(self):
# not take into account if the producer has reached end of
# file stream.
def running(self):
return self.Q.qsize() > 0 or not self.stopped
return self.more() or not self.stopped

def more(self):
# return True if there are still frames in the queue
Expand Down

0 comments on commit 3ecf7c8

Please sign in to comment.