mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -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 filename in filesnames:
|
||||
fileExtention = os.path.splitext(filename)[1]
|
||||
if not (fileExtention in mediaContainer):
|
||||
fileExtension = os.path.splitext(filename)[1]
|
||||
if not (fileExtension in mediaContainer):
|
||||
continue
|
||||
yield dirpath, os.path.join(dirpath, filename)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue