Corrected typo in absolute path

This commit is contained in:
Samuel Ortion 2021-03-06 20:03:17 +01:00
parent 77320d21e6
commit aa891b53c4
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def main():
CAPTURES_DIR = "/home/pi/captures"
image_paths = glob.glob(CAPTURES_DIR + "*.jpg")
image_paths = glob.glob(CAPTURES_DIR + "/*.jpg")
for image_path in image_paths:
im = Image.open(image_path)