Show
Ignore:
Timestamp:
02/14/08 10:40:17 (5 years ago)
Author:
ged
Message:

- Made Elixir python 2.3 compatible again (based on a patch from

Jason R. Coombs)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/relationships.py

    r297 r307  
    336336from sqlalchemy.ext.associationproxy import association_proxy 
    337337 
     338from py23compat import rsplit 
     339 
    338340import sys 
    339341import options 
     
    419421                self._target = self.of_kind 
    420422            else: 
    421                 path = self.of_kind.rsplit('.', 1) 
     423                path = rsplit(self.of_kind, '.', 1) 
    422424                classname = path.pop() 
    423425