2
0
Эх сурвалжийг харах

Fixed #18528 -- Fixed custom field value_to_string example

Thanks anuraguniyal for the report.
Claude Paroz 12 жил өмнө
parent
commit
b9ecbedb31

+ 1 - 1
docs/howto/custom-model-fields.txt

@@ -666,7 +666,7 @@ data storage anyway, we can reuse some existing conversion code::
 
         def value_to_string(self, obj):
             value = self._get_val_from_obj(obj)
-            return self.get_db_prep_value(value)
+            return self.get_prep_value(value)
 
 Some general advice
 --------------------