예제 #1
0
 def __init__(self, path):
     msg = 'The directory %s is in the way, please remove' % \
         os.path.abspath(path)
     ReviewError.__init__(self, msg, 2)
     self.show_logs = False
예제 #2
0
 def __init__(self):
     ReviewError.__init__(self, 'Bad options!!', 2, True)
예제 #3
0
 def __init__(self, path):
     msg = 'The directory %s is in the way, please remove' % \
         os.path.abspath(path)
     ReviewError.__init__(self, msg, 2)
     self.show_logs = False
예제 #4
0
 def __init__(self):
     ReviewError.__init__(
         self, 'The resultdir is not empty, I cannot handle this')
예제 #5
0
 def __init__(self, code, url):
     ReviewError.__init__(
         self, "Error %s downloading %s" % (code, url))
예제 #6
0
 def __init__(self):
     ReviewError.__init__(
         self,
         'The resultdir is not empty, I cannot handle this')
예제 #7
0
 def __init__(self, msg):
     ReviewError.__init__(self, msg)
예제 #8
0
 def __init__(self, msg):
     ReviewError.__init__(self, msg)
예제 #9
0
 def __init__(self, what):
     ReviewError.__init__(self, what, 2)
     self.show_logs = False
예제 #10
0
 def __init__(self, what):
     ReviewError.__init__(self, "Incompatible settings: " + what)
예제 #11
0
 def __init__(self, what):
     ReviewError.__init__(self, what, 2)
     self.show_logs = False
예제 #12
0
 def __init__(self, what):
     ReviewError.__init__(self, "Incompatible settings: " + what)
예제 #13
0
 def __init__(self):
     ReviewError.__init__(self, 'Bad options!!', 2, True)