##// END OF EJS Templates
helpers: drop fmt_date iso8601 decoding to unicode - it will always be str
Mads Kiilerich -
r7918:ed08a211 default
parent child Browse files
Show More
@@ -515,8 +515,7 b' def show_id(cs):'
515
515
516 def fmt_date(date):
516 def fmt_date(date):
517 if date:
517 if date:
518 return date.strftime("%Y-%m-%d %H:%M:%S").decode('utf-8')
518 return date.strftime("%Y-%m-%d %H:%M:%S")
519
520 return ""
519 return ""
521
520
522
521
General Comments 0
You need to be logged in to leave comments. Login now