1
life 2012-07-24 16:33:37 +08:00
请问哪里可以下载到2.5.0-dev7这个版本?
另,2.5.0-dev7是否是支持gae的版本中最新的版本? 非常感谢! |
2
chouj OP |
5
guokb 2012-10-20 10:56:47 +08:00
@chouj 我是從 2.4.0-RC1 升級到 2.5.0-dev7 時出現跟妳類似的錯誤(詳見 t/50275 ), 最後2行反饋的亦是:
raise BadValueError('Property %s is required' % self.name) BadValueError: Property notification_position is required 然後,只是去瀏了下 model.py ,topic.py ,notifications.py 這三個文件: 1. 在model.py中的第150-152行,有這麼一段 raise datastore_errors.BadValueError( "Property %s must be convertible to a %s instance (%s)" % (self.name, self.data_type, value)) 2. 在topic.py中有不少帶"notification"的句子,可以去搜下...... 3. 在notifications.py中,有兩段是關於notification_position的: 例如第55-57行 if self.member.notifications_position != n.num: self.member.notifications_position = n.num self.member.put() 第82-83行 if member.notifications_position is None: member.notifications_position = 0 但是,我是個代碼盲啊,不知道哪裏下手爲好,所以折騰不成功後也不了了之。 so , 還是希望有熟悉babel且好心的童鞋們能夠提供一點兒協助吧!!thx! |