Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosebr1 committed Dec 6, 2015
1 parent b1f4f1f commit e7f5881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imutils/video/pivideostream.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, resolution=(320, 240), framerate=32):
format="bgr", use_video_port=True)

# initialize the frame and the variable used to indicate
# if the thread should
# if the thread should be stopped
self.frame = None
self.stopped = False

Expand Down Expand Up @@ -46,4 +46,4 @@ def read(self):

def stop(self):
# indicate that the thread should be stopped
self.stopped = True
self.stopped = True

0 comments on commit e7f5881

Please sign in to comment.