fixed deletions

master
agp8x 2014-10-23 21:33:48 +02:00
parent bf7859f05f
commit c0197c0812
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ def preptime():
day = "0" + str(day) day = "0" + str(day)
else: else:
day = str(day) day = str(day)
if( month < 10: if month < 10:
month = "0" str(month) month = "0" + str(month)
else: else:
month = str(month) month = str(month)
return month + "." + day + "." + year return month + "." + day + "." + year