image: use a different shuffle algo

This commit is contained in:
Dylan Araps 2017-12-28 21:22:25 +11:00
parent 271cbf4e2b
commit 8d391d0820

View File

@ -25,7 +25,9 @@ def get_random_image(img_dir):
print("image: No new images found (nothing to do), exiting...")
sys.exit(1)
return os.path.join(img_dir, random.choice(images).name)
random.shuffle(images)
return os.path.join(img_dir, images[0].name)
def get(img, cache_dir=CACHE_DIR):