예제 #1
0
파일: notices.py 프로젝트: parastoo-62/pie
 def __init__(self, context, name):
     message = "Undefined variable: %s" % name
     Notice.__init__(self, context, message)
예제 #2
0
파일: notices.py 프로젝트: parastoo-62/pie
 def __init__(self, context):
     message = "Only variable references should be returned by reference"
     Notice.__init__(self, context, message)