From 63da8b8a73f7b9a1185f9a43797afe274890c2ca Mon Sep 17 00:00:00 2001 From: Alan De Smet <alan.desmet@ssec.wisc.edu> Date: Tue, 12 Jul 2016 14:40:37 -0500 Subject: [PATCH] Typo fix: remove extra space. --- pyglance/glance/load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyglance/glance/load.py b/pyglance/glance/load.py index 03a99e3..58b6962 100644 --- a/pyglance/glance/load.py +++ b/pyglance/glance/load.py @@ -253,7 +253,7 @@ def load_variable_data(fileObject, variableNameInFile, variableData = variableData.astype(numpy.uint8) if correctForAWIPS else variableData except Exception, ex : import traceback - exceptionToRaise = ValueError('Unable to retrieve ' + variableNameInFile + ' data. The variable name ' + + exceptionToRaise = ValueError('Unable to retrieve ' + variableNameInFile + ' data. The variable name' + ' may not exist in this file or an error may have occured while attempting to' + ' access the data. Details of file access error observed: ' + str(ex)) -- GitLab