MAINT: Reduce end_date int for SQLite Python3.3 compatibility

This commit is contained in:
Stewart Douglas
2015-08-14 18:09:21 -04:00
committed by jfkirk
parent 593e114f0a
commit ee9c79a6f8
+2 -2
View File
@@ -289,7 +289,7 @@ class AssetDBWriter(with_metaclass(ABCMeta)):
'symbol': None,
'asset_name': None,
'start_date': 0,
'end_date': 2 ** 63 - 1,
'end_date': 2 ** 62 - 1,
'first_traded': None,
'exchange': None,
'fuzzy': None,
@@ -332,7 +332,7 @@ class AssetDBWriter(with_metaclass(ABCMeta)):
'root_symbol': None,
'asset_name': None,
'start_date': 0,
'end_date': 2 ** 63 - 1,
'end_date': 2 ** 62 - 1,
'first_traded': None,
'exchange': None,
'notice_date': None,