Update var in constant
This commit is contained in:
		| @@ -16,7 +16,7 @@ def get_date_created(filename): | ||||
|     image = Image.open(filename) | ||||
|     image.verify() | ||||
|     # Format date d/m/Y | ||||
|     if image._getexif() is not None and str(META_CREATED) in image._getexif(): | ||||
|     if image._getexif() is not None and META_CREATED in image._getexif(): | ||||
|         # Metadata | ||||
|         return time.strftime('%d/%m/%Y', datetime.datetime.strptime(image._getexif()[META_CREATED], "%Y:%m:%d %H:%M:%S").timetuple()) | ||||
|     else: | ||||
|   | ||||
							
								
								
									
										2
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								setup.py
									
									
									
									
									
								
							| @@ -2,7 +2,7 @@ from setuptools import setup | ||||
| setup( | ||||
|   name = 'Organize-my-photos', | ||||
|   py_modules=['organize_my_photos'], | ||||
|   version = '1.0.5', | ||||
|   version = '1.0.6', | ||||
|   python_requires='>3.6', | ||||
|   description = 'Terminal program that organizes and organizes the photographs in folders by year, month and day.', | ||||
|   author = 'Andros Fenollosa', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user