示例#1
0
 def _to_python(self, value, state):
     from adhocracy.model import Milestone
     try:
         return Milestone.find(value)
     except Exception:
         return None
示例#2
0
文件: common.py 项目: whausen/part
 def _to_python(self, value, state):
     from adhocracy.model import Milestone
     try:
         return Milestone.find(value)
     except Exception:
         return None