price date change

This commit is contained in:
Paul Trowbridge 2024-04-09 12:01:00 -04:00
parent 766c5cc738
commit a26e5003d1
1 changed files with 2 additions and 2 deletions

View File

@ -39,11 +39,11 @@ for row in rows:
print(price_level)
# Create a directory with the customer name
customer_directory = '/mnt/c/Users/ptrowbridge/Downloads/2023-10-24/'
customer_directory = '/mnt/c/Users/ptrowbridge/Downloads/2024-04-09/'
#os.makedirs(customer_directory, exist_ok=True)
# Copy contents from the pre-existing folder based on price level
source_directory = '/mnt/c/Users/ptrowbridge/Downloads/2023-10-24/Levels/' + price_level
source_directory = '/mnt/c/Users/ptrowbridge/Downloads/2024-04-09/Levels/' + price_level
if os.path.exists(source_directory):
for file in os.listdir(source_directory):
# shutil.copy2(os.path.join(source_directory, file), customer_directory)