예제 #1
0
 def __init__(self, virtual_url_fragment, reason=None):
     BzrError.__init__(self)
     self.virtual_url_fragment = virtual_url_fragment
     if reason is not None:
         self.reason = str(reason)
     else:
         self.reason = ''
예제 #2
0
 def __init__(self, virtual_url_fragment, reason=None):
     BzrError.__init__(self)
     self.virtual_url_fragment = virtual_url_fragment
     if reason is not None:
         self.reason = str(reason)
     else:
         self.reason = ''
예제 #3
0
 def __init__(self, msg):
     BzrError.__init__(self)
     self.msg = msg
예제 #4
0
 def __init__(self, command):
     BzrError.__init__(
         self, "The command %s is blacklisted for shell use" % command)
예제 #5
0
 def __init__(self, command):
     BzrError.__init__(self, "The command %s is blacklisted for shell use" %
                       command)
예제 #6
0
파일: rebase.py 프로젝트: edsrzf/dotfiles
 def __init__(self, fileid, revid):
     BzrError.__init__(self)
     self.fileid = fileid
     self.revid = revid