diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-05-05 16:55:09 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-05-05 16:55:09 -0400 |
commit | be81cb200d9efb45c3bf331315c54dff778b5de6 (patch) | |
tree | a93302701ca18031debb09088bba18f97d1d153a /lib/sqlalchemy/ext/automap.py | |
parent | bcc8e6c02b0fd063bf85edc5369899e5717d0232 (diff) | |
download | sqlalchemy-be81cb200d9efb45c3bf331315c54dff778b5de6.tar.gz |
- fix typo MANYTOONE -> MANYTOMANY, fixes #3415
Diffstat (limited to 'lib/sqlalchemy/ext/automap.py')
-rw-r--r-- | lib/sqlalchemy/ext/automap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/automap.py b/lib/sqlalchemy/ext/automap.py index 448d8492e..119d10c42 100644 --- a/lib/sqlalchemy/ext/automap.py +++ b/lib/sqlalchemy/ext/automap.py @@ -631,7 +631,7 @@ def generate_relationship( :param base: the :class:`.AutomapBase` class doing the prepare. :param direction: indicate the "direction" of the relationship; this will - be one of :data:`.ONETOMANY`, :data:`.MANYTOONE`, :data:`.MANYTOONE`. + be one of :data:`.ONETOMANY`, :data:`.MANYTOONE`, :data:`.MANYTOMANY`. :param return_fn: the function that is used by default to create the relationship. This will be either :func:`.relationship` or |