예제 #1
0
파일: errors.py 프로젝트: Nephyrin/bzexport
 def __init__(self):
     PublishError.__init__(self,
                           'Publishing commit review requests is '
                           'prohibited, please publish parent.')
예제 #2
0
 def __init__(self):
     PublishError.__init__(self, 'Exactly one bug ID must be provided.')
예제 #3
0
파일: errors.py 프로젝트: Nephyrin/bzexport
 def __init__(self):
     PublishError.__init__(self, '"Ship it" reviews on parent review '
                           'requests are not allowed.  Please review '
                           'individual commits.')
 def __init__(self, bug_id):
     PublishError.__init__(self, 'Invalid bug ID "%s".' % bug_id)
 def __init__(self):
     PublishError.__init__(self, 'This bug is confidential; please attach '
                           'the patch directly to the bug.')
예제 #6
0
파일: errors.py 프로젝트: markrcote/rbbz
 def __init__(self):
     PublishError.__init__(
         self, 'This bug is confidential; please attach '
         'the patch directly to the bug.')
예제 #7
0
파일: errors.py 프로젝트: markrcote/rbbz
 def __init__(self, bug_id):
     PublishError.__init__(self, 'Invalid bug ID "%s".' % bug_id)
예제 #8
0
 def __init__(self):
     PublishError.__init__(self,
                           'Publishing commit review requests is '
                           'prohibited, please publish parent.')
예제 #9
0
 def __init__(self, username):
     PublishError.__init__(self, 'Chosen reviewer (%s) is assigned to a '
                           'non-existing Bugzilla user. If you believe you '
                           'received this message in error, please ask for '
                           'help on IRC#mozreview.' % username)
예제 #10
0
 def __init__(self):
     PublishError.__init__(self, '"Ship it" reviews on parent review '
                           'requests are not allowed.  Please review '
                           'individual commits.')