1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-24 06:59:52 +01:00

fix typo from merge

This commit is contained in:
Ilya Kreymer 2014-02-24 23:40:32 -08:00
parent 3cd7b6b209
commit f24b2e7767

View File

@ -57,7 +57,7 @@ class J2TemplateView:
# Filters # Filters
@staticmethod @staticmethod
def format_ts(value, format_='%a, %b %d %Y %H:%M:%S'): def format_ts(value, format_='%a, %b %d %Y %H:%M:%S'):
value = timeutils.timestamp_to_datetime(value) value = timestamp_to_datetime(value)
return value.strftime(format_) return value.strftime(format_)
@staticmethod @staticmethod