| # | Line 65 | Line 65 | if __name__ == '__main__': | |
|---|---|---|
| 65 | outputFile = open(os.path.join(outputDirectory,volumeName+"_XDD"+".DAT"),'w') | |
| 66 | outputFile.write("ProdBegBates|ProdEndBates|TextFilePath\n") | |
| 67 | outputImagesFile = open(os.path.join(outputDirectory,volumeName+"_XDD"+".LFP"),'w') | |
| 68 | < | batesList = textFileMatrix.keys() |
| 68 | > | batesList = list(textFileMatrix.keys()) |
| 69 | batesList.sort() | |
| 70 | < | imageList = imageFileMatrix.keys() |
| 70 | > | imageList = list(imageFileMatrix.keys()) |
| 71 | imageList.sort() | |
| 72 | prevBates = "" | |
| 73 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |