Exemplo n.º 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
Exemplo n.º 2
0
 def __init__(self):
     ReviewError.__init__(self, 'Bad options!!', 2, True)
Exemplo n.º 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
Exemplo n.º 4
0
 def __init__(self):
     ReviewError.__init__(
         self, 'The resultdir is not empty, I cannot handle this')
Exemplo n.º 5
0
 def __init__(self, code, url):
     ReviewError.__init__(
         self, "Error %s downloading %s" % (code, url))
Exemplo n.º 6
0
 def __init__(self):
     ReviewError.__init__(
         self,
         'The resultdir is not empty, I cannot handle this')
Exemplo n.º 7
0
 def __init__(self, msg):
     ReviewError.__init__(self, msg)
Exemplo n.º 8
0
 def __init__(self, msg):
     ReviewError.__init__(self, msg)
Exemplo n.º 9
0
 def __init__(self, what):
     ReviewError.__init__(self, what, 2)
     self.show_logs = False
Exemplo n.º 10
0
 def __init__(self, what):
     ReviewError.__init__(self, "Incompatible settings: " + what)
Exemplo n.º 11
0
 def __init__(self, what):
     ReviewError.__init__(self, what, 2)
     self.show_logs = False
Exemplo n.º 12
0
 def __init__(self, what):
     ReviewError.__init__(self, "Incompatible settings: " + what)
Exemplo n.º 13
0
 def __init__(self):
     ReviewError.__init__(self, 'Bad options!!', 2, True)