Borya-Goldarb commited on
Commit
11c3871
·
verified ·
1 Parent(s): d2773f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def create_date_format():
21
  current_month = current_date.month
22
  current_day = current_date.day
23
  current_year = current_date.year
24
- month_name = datetime.datetime.strptime(str(month_index), "%m").strftime("%B")
25
  current_date_format1 = f"{month_name} {current_day}, {current_year}"
26
  current_date_format2 = f"{current_month}/{current_day}/{current_year}"
27
  #create a pedding with spaces b second date
 
21
  current_month = current_date.month
22
  current_day = current_date.day
23
  current_year = current_date.year
24
+ month_name = datetime.datetime.strptime(str(current_month), "%m").strftime("%B")
25
  current_date_format1 = f"{month_name} {current_day}, {current_year}"
26
  current_date_format2 = f"{current_month}/{current_day}/{current_year}"
27
  #create a pedding with spaces b second date