Merge pull request #531 from lnussel/master

Fix maintbot exception
This commit is contained in:
Ludwig Nussel 2016-06-28 22:29:56 +02:00 committed by GitHub
commit b5da1102c5
2 changed files with 4 additions and 1 deletions

View File

@ -462,7 +462,7 @@ class CommandLineInterface(cmdln.Cmdln):
try:
workfunc()
except Exception, e:
self.logger.error(e)
self.logger.exception(e)
if interval:
self.logger.info("sleeping %d minutes. Press enter to check now ..."%interval)

View File

@ -146,6 +146,9 @@ class MaintenanceChecker(ReviewBot.ReviewBot):
def check_action_maintenance_incident(self, req, a):
if a.src_package == 'patchinfo':
return None
self._check_maintainer_review_needed(req, a)
if a.tgt_releaseproject.startswith("openSUSE:Backports:"):