Add missing linefeed on survey-parsing error message

This commit is contained in:
expoonserver 2018-06-18 23:43:20 +01:00
parent 1ad58d6b5d
commit 9802f45452

View File

@ -98,7 +98,7 @@ def parseSurveyScans(expedition, logfile=None):
# scanList = listdir(expedition.year, surveyFolder)
scanList=os.listdir(os.path.join(yearPath,surveyFolder))
except AttributeError:
print surveyFolder + " ignored",
print surveyFolder + " ignored\r",
continue
for scan in scanList:
@ -106,7 +106,7 @@ def parseSurveyScans(expedition, logfile=None):
scanChopped=re.match(r'(?i).*(notes|elev|plan|elevation|extend)(\d*)\.(png|jpg|jpeg)',scan).groups()
scanType,scanNumber,scanFormat=scanChopped
except AttributeError:
print scan + " ignored \r",
print scan + " ignored\r",
continue
if scanType == 'elev' or scanType == 'extend':
scanType = 'elevation'