From d2116f38fea20b522be446eb37f355f14f896bac Mon Sep 17 00:00:00 2001 From: Pastafarianist Date: Sun, 5 May 2013 16:17:41 +0400 Subject: [PATCH] Fixed typo --- samples/python2/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python2/video.py b/samples/python2/video.py index e40d4d18c8..187bb6d512 100755 --- a/samples/python2/video.py +++ b/samples/python2/video.py @@ -140,7 +140,7 @@ def create_capture(source = 0, fallback = presets['chess']): ''' source = str(source).strip() chunks = source.split(':') - # hanlde drive letter ('c:', ...) + # handle drive letter ('c:', ...) if len(chunks) > 1 and len(chunks[0]) == 1 and chunks[0].isalpha(): chunks[1] = chunks[0] + ':' + chunks[1] del chunks[0]