Skip to content

Commit

Permalink
DAOTHER-8746 review module crash if space at end of deposition id list
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Peisach committed Feb 1, 2024
1 parent 6926ed4 commit 6fbdbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwpdb/apps/ann_tasks_v2/webapp/CommonTasksWebAppWorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2585,7 +2585,7 @@ def _fetchAndReportIdOps(self):
self._lfh.write("+ReviewDataWebAppWorker._fetchAndReportIdOps() starting with op %s\n" % operation)

entryIds = self._reqObj.getValue("entryid")
entryIdList = entryIds.split(" ")
entryIdList = entryIds.strip().split(" ") # Handles case of space at end of list
contentType = self._reqObj.getValue("contentType")

fileSource = self._reqObj.getValue("filesource")
Expand Down

0 comments on commit 6fbdbd7

Please sign in to comment.