We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01dcec0 commit 8056b4eCopy full SHA for 8056b4e
indico/MaKaC/webinterface/rh/contribMod.py
@@ -601,7 +601,8 @@ def _checkProtection(self):
601
self._loggedIn = True
602
# status = 3 means the paper is under review (submitted but not reviewed)
603
# status = 2 means that the author has not yet submitted the material
604
- elif not (RCContributionPaperReviewingStaff.hasRights(self, includingContentReviewer=False) and self._target.getReviewing().getReviewingState() in [2, 3]):
+ elif not (RCContributionPaperReviewingStaff.hasRights(self, includingContentReviewer=False)
605
+ and self._target.getReviewing() and self._target.getReviewing().getReviewingState() in (2, 3)):
606
RHSubmitMaterialBase._checkProtection(self)
607
else:
608
0 commit comments