예제 #1
0
파일: exceptions.py 프로젝트: engla/kupfer
 def __init__(self):
     OperationError.__init__(self,
                    _("Can not be used with multiple objects"))
예제 #2
0
파일: exceptions.py 프로젝트: engla/kupfer
 def __init__(self, s):
     OperationError.__init__(self, kupferstring.fromlocale(s))
예제 #3
0
파일: exceptions.py 프로젝트: engla/kupfer
 def __init__(self, toolname):
     OperationError.__init__(self,
                    _("%s does not support this operation") % toolname)
예제 #4
0
	def __init__(self, cmd):
		OperationError.__init__(self, _("Command '%s' not found") % (cmd, ))
예제 #5
0
 def __init__(self, s):
     OperationError.__init__(self, kupferstring.fromlocale(s))
예제 #6
0
 def __init__(self):
     OperationError.__init__(self,
                             _("Can not be used with multiple objects"))
예제 #7
0
 def __init__(self, toolname):
     OperationError.__init__(
         self,
         _("%s does not support this operation") % toolname)