Browse Source

remove commented lines

Apkallum 5 years ago
parent
commit
1f91f5b102
1 changed files with 1 additions and 4 deletions
  1. 1 4
      archivebox/index/schema.py

+ 1 - 4
archivebox/index/schema.py

@@ -190,10 +190,7 @@ class Link:
             for key, val in json_info.items()
             if key in cls.field_names()
         }
-        # try:
-        info['updated'] = parse_date(info.get('updated')) # Cast to int which comes with rounding down
-        # except (ValueError, TypeError):
-        #     info['updated'] = None
+        info['updated'] = parse_date(info.get('updated'))
         info['sources'] = info.get('sources') or []
 
         json_history = info.get('history') or {}