read all records

pull/94/head
eric 2021-12-31 14:05:28 -05:00
parent 3344d91fd4
commit c8d009ca75
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Command(BaseCommand):
from_date = datetime.strptime(options['from_date'], '%m-%d-%Y')
except ValueError:
from_date = datetime.strptime('1-1-2000', '%m-%d-%Y')
for record in pb_metadata[50:51]:
for record in pb_metadata:
if 'updated' in record:
updated = datetime.strptime(record['updated'], '%m-%d-%Y')
if updated < from_date: