dgilland / alchy

The declarative companion to SQLAlchemy

Home Page:http://alchy.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[bug] Incorrect reference to `model` module in `Manager` class

dgilland opened this issue · comments

See:

self.Model = Model or self.model.make_declarative_base()

Should be:

self.Model = Model or model.make_declarative_base()