diff --git a/check_source.py b/check_source.py index 975e2672..3c6bbd6c 100755 --- a/check_source.py +++ b/check_source.py @@ -28,6 +28,7 @@ class CheckSource(ReviewBot.ReviewBot): # ReviewBot options. self.only_one_action = True + self.request_default_return = True self.maintbot = MaintenanceChecker(*args, **kwargs) @@ -276,10 +277,6 @@ class CheckSource(ReviewBot.ReviewBot): self.review_messages['declined'] = "This is an incorrect request, it's a linked package to %s/%s" % (linked_project, linked_package) return False - def check_action__default(self, request, action): - self.review_messages['accepted'] = 'Unhandled request type %s.' % (action.type) - return True - class CommandLineInterface(ReviewBot.CommandLineInterface): def __init__(self, *args, **kwargs):