Changeset 488 for elixir/trunk/elixir/relationships.py
- Timestamp:
- 10/01/09 18:06:51 (4 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/relationships.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/relationships.py
r484 r488 866 866 "all ManyToMany tables", DeprecationWarning, stacklevel=3) 867 867 self.column_format = column_format or options.M2MCOL_NAMEFORMAT 868 if not callable(self.column_format):868 if not hasattr(self.column_format, '__call__'): 869 869 # we need to store the format in a variable so that the 870 870 # closure of the lambda is correct
