Opened 14 years ago

Last modified 13 years ago

#7232 closed defect

separator in date string — at Initial Version

Reported by: anonymous Owned by: Ryan J Ollos
Priority: normal Component: WikiCalendarMacro
Severity: normal Keywords: date/time format
Cc: Ryan J Ollos Trac Release: 0.11

Description

We had to set the seperator 'sep' in wikiticketcalendar/macro.py hard coded to: "/" to make it work

duedate = { 'dmy': '%(dd)s%(sep)s%(mm)s%(sep)s%(yy)s',

'mdy': '%(mm)s%(sep)s%(dd)s%(sep)s%(yy)s', 'ymd': '%(yy)s%(sep)s%(mm)s%(sep)s%(dd)s'

}.get(self.date_format, '%(yy)s%(sep)s%(mm)s%(sep)s%(dd)s') % {

'dd': dayString, 'mm': monthString, 'yy': yearString, 'sep': "/"

}

Change History (0)

Note: See TracTickets for help on using tickets.