mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 06:13:19 -07:00
fix spelling
This commit is contained in:
parent
3779bc367c
commit
039a5aa30c
1 changed files with 2 additions and 2 deletions
|
@ -202,8 +202,8 @@ def iterate_media_files(dirname):
|
||||||
|
|
||||||
for dirpath, dirnames, filesnames in os.walk(dirname):
|
for dirpath, dirnames, filesnames in os.walk(dirname):
|
||||||
for filename in filesnames:
|
for filename in filesnames:
|
||||||
fileExtention = os.path.splitext(filename)[1]
|
fileExtension = os.path.splitext(filename)[1]
|
||||||
if not (fileExtention in mediaContainer):
|
if not (fileExtension in mediaContainer):
|
||||||
continue
|
continue
|
||||||
yield dirpath, os.path.join(dirpath, filename)
|
yield dirpath, os.path.join(dirpath, filename)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue