fix sorting

This commit is contained in:
Akbar Rahman 2024-04-13 20:36:24 +01:00
parent 7bee57bcd5
commit aa159369fd
Signed by: alvierahman90
GPG Key ID: 6217899F07CA2BDF

View File

@ -60,7 +60,6 @@ class FileMap:
def get_base_url(self):
props = self.get(self.input_dir.joinpath('readme.md'))
print(props)
return props['base_url']
@staticmethod
@ -249,9 +248,11 @@ class FileMap:
def rfc822_date_sorter_key(date):
if date is None:
return 0
ret = 0
else:
ret = int(dt.strptime(date, '%a, %d %b %Y %H:%M:%S %z').timestamp())
int(dt.strptime(date, '%a, %d %b %Y %H:%M:%S %z').timestamp())
return ret
def update_required(src_filepath, output_filepath):