Change NotApplicableValue -> UnparsableValue

This commit is contained in:
Andrew Case
2018-12-08 17:34:48 +00:00
committed by ikelos
parent c6e9763e5a
commit 3ab654847e
+1 -1
View File
@@ -58,7 +58,7 @@ def wintime_to_datetime(wintime: int) -> typing.Union[
def unixtime_to_datetime(unixtime: int) -> typing.Union[
interfaces.renderers.BaseAbsentValue, datetime.datetime]:
ret = renderers.NotApplicableValue()
ret = renderers.UnparsableValue()
if unixtime > 0:
try: