mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-08-09 22:37:33 +02:00
Check file ending
This commit is contained in:
@ -22,8 +22,8 @@ def get_image_dir_recursive(img_dir):
|
||||
images = []
|
||||
for path, subdirs, files in os.walk(img_dir):
|
||||
for name in files:
|
||||
print(os.path.join(path, name))
|
||||
images.append(os.path.join(path, name))
|
||||
if name.lower().endswith(file_types):
|
||||
images.append(os.path.join(path, name))
|
||||
|
||||
return images, current_wall
|
||||
|
||||
|
Reference in New Issue
Block a user