952b27fe42da49c99491358e288e372109842597 wong Wed Feb 22 12:03:31 2012 -0800 forgot parenthesis diff --git python/lib/ucscgenomics/mkChangeNotes.py python/lib/ucscgenomics/mkChangeNotes.py index 5e26381..4783754 100644 --- python/lib/ucscgenomics/mkChangeNotes.py +++ python/lib/ucscgenomics/mkChangeNotes.py @@ -617,34 +617,34 @@ self.oldGbdbSet = self.oldGbdbSet - self.atticSet self.changedGbdbs = self.oldGbdbSet - self.newGbdbSet for i in self.missingFiles: if i in self.oldReleaseFiles: del self.oldReleaseFiles[i] #fill in the errors errors.extend(newFileErrors) errors.extend(oldFileErrors) errors.extend(newTableError) errors.extend(oldTableError) errors.extend(newGbdbError) errors.extend(oldGbdbError) if self.changedTables: - errors.append("These tables were tables in the old release, but are no longer tables in the new release:" + errors.append("These tables were tables in the old release, but are no longer tables in the new release:") errors.extend(list(self.changedTables)) if self.changedGbdbs: - errors.append("These GBDBs were GBDB tables in the old release, but are no longer GBDB tables in the new release:" + errors.append("These GBDBs were GBDB tables in the old release, but are no longer GBDB tables in the new release:") errors.extend(list(self.changedGbdbs)) #for ease of typing totalFiles = set(self.newReleaseFiles) oldTotalFiles = set(self.oldReleaseFiles) #these could honestly be moved earlier, get a file list processing section or something #they clean out special fiels out and separated the master fiels list into the 3 required #ones: wgEncode, supplemental and additional. self.totalFiles = self.__cleanSpecialFiles(totalFiles) self.oldTotalFiles = self.__cleanSpecialFiles(oldTotalFiles) (self.oldTotalFiles, self.additionalList, self.oldAdditionalList, self.totalFiles) = self.__separateOutAdditional() #get the stuff you need to push self.pushTables = set(sorted((self.newTableSet - self.oldTableSet)))