Browse Source

Debugged small things

Danny 2 years ago
parent
commit
4acd340024
1 changed files with 1 additions and 1 deletions
  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'),