Procházet zdrojové kódy

Debugged small things

Danny před 2 roky
rodič
revize
4acd340024
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      time_recoder/save_recorded_time_in_table.py

+ 1 - 1
time_recoder/save_recorded_time_in_table.py

@@ -8,7 +8,7 @@ from time import time
 
 def create_recorded_time_dict(worked_time, income, task):
     return {'Name': NAME,
-            'Datum': str(datetime_functions.get_current_date()) ,
+            'Datum': datetime_functions.datetime_to_str(datetime_functions.get_current_date(),'%d/%m%Y') ,
             'Arbeitszeit': worked_time,
             'Einkommen': income,
             'Kalenderwoche': datetime_functions.datetime_to_str(datetime_functions.get_current_date(), '%V'),