Fix flake warning.

This commit is contained in:
Brandon Amos 2016-07-29 16:05:45 -04:00
parent 592052b819
commit 3582d542c4
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ with open(args.croppedTSV, 'r') as tsvF:
MID, faceID, data = row[0], row[4], base64.b64decode(row[-1])
saveDir = os.path.join(args.outputDir, faceID)
savePath = os.path.join(saveDir, MID+'.jpg')
savePath = os.path.join(saveDir, MID + '.jpg')
# assert(magic.from_buffer(data) == 'JPEG image data, JFIF standard 1.01')