diff options
Diffstat (limited to 'lib/sqlalchemy/sql/visitors.py')
| -rw-r--r-- | lib/sqlalchemy/sql/visitors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index 738dae9c7..2106522d2 100644 --- a/lib/sqlalchemy/sql/visitors.py +++ b/lib/sqlalchemy/sql/visitors.py @@ -154,7 +154,7 @@ def cloned_traverse(obj, opts, visitors): def replacement_traverse(obj, opts, replace): cloned = {} - stop_on = util.Set(opts.get('stop_on', [])) + stop_on = set(opts.get('stop_on', [])) def clone(element): newelem = replace(element) |
