diff --git a/lsmtool/tableio.py b/lsmtool/tableio.py index 5411f48a11b2826d13886a1450b1d197ca6742ad..cb8fdc1e4305f0d926842050e914171195241a41 100644 --- a/lsmtool/tableio.py +++ b/lsmtool/tableio.py @@ -446,7 +446,7 @@ def processLine(line, metaDict, colNames): patchRA = RA2Angle(colLines[RAIndx].strip()) DecIndx = colNames.index('Dec') if colLines[DecIndx].strip() == '': - patchRA = [0.0] + patchDec = [0.0] else: patchDec = Dec2Angle(colLines[DecIndx].strip()) metaDict[patchName] = [patchRA[0], patchDec[0]]