From 76b3a4ab7416f67c63cbcefbafbfa5e799c2773e Mon Sep 17 00:00:00 2001 From: Ron Anderson Date: Thu, 20 Nov 2014 16:43:22 -0600 Subject: [PATCH] VLab Issue #4953 Build fix and another cleanup item. Change-Id: I5d92df3f452259c93784cd19e75cc7efd8e04dc4 Former-commit-id: cd44c42d1833275453a358b770c00f20d4d80d26 [formerly 9485f334761c516e83ec06158a2133ecd87df3bf] [formerly cd44c42d1833275453a358b770c00f20d4d80d26 [formerly 9485f334761c516e83ec06158a2133ecd87df3bf] [formerly 8e4f2100cbf503ffac918ad1e1c8c2be6743efd9 [formerly 7a33861e7ac4475855778f50e0a5fca5227e5f97]]] Former-commit-id: 8e4f2100cbf503ffac918ad1e1c8c2be6743efd9 Former-commit-id: 898e4993b2020aa44e0c59c0ab5456f542e37202 [formerly 5181e9ab47edaa5266b687484f37b5a6a881d7f5] Former-commit-id: 0ebb70f6ae29e5e41a2b49347788698f04154aaf --- .../gfe/userPython/textUtilities/headline/HazardsTable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cave/com.raytheon.viz.gfe/localization/gfe/userPython/textUtilities/headline/HazardsTable.py b/cave/com.raytheon.viz.gfe/localization/gfe/userPython/textUtilities/headline/HazardsTable.py index cc73735df2..81d54234dd 100644 --- a/cave/com.raytheon.viz.gfe/localization/gfe/userPython/textUtilities/headline/HazardsTable.py +++ b/cave/com.raytheon.viz.gfe/localization/gfe/userPython/textUtilities/headline/HazardsTable.py @@ -1162,7 +1162,7 @@ class HazardsTable(VTECTableUtil.VTECTableUtil): for proposed in pTable: if (proposed['phen'], proposed['sig']) in self.__ufnKeys: proposed['startTime'] = self.__time #now - proposed['endTime'] = float(2 ** 31 - 1) #forever + proposed['endTime'] = 2 ** 31 - 1 #forever proposed['ufn'] = 1 #until further notice return pTable