Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyDal changes Row() #173

Closed
grutz opened this issue Feb 13, 2015 · 2 comments
Closed

pyDal changes Row() #173

grutz opened this issue Feb 13, 2015 · 2 comments
Assignees
Labels
Milestone

Comments

@grutz
Copy link
Contributor

grutz commented Feb 13, 2015

Recently DAL was separated from web2py into https://github.com/web2py/pydal. This changes some "unsupported" methods Kvasir uses.

Only two instances are used in valkyries (web and vnc screenshots). Should be changed to:

try:
    from pydal.objects import Row
except ImportError:
    from gluon.dal import Row
@grutz grutz added the bug label Feb 13, 2015
@grutz grutz self-assigned this Feb 13, 2015
@grutz grutz added this to the 1.1.1 milestone Feb 13, 2015
@RCStep
Copy link

RCStep commented Feb 26, 2015

Changing line 88 to the following fixes webimaging.py for the separate pydal install.

from gluon.dal.objects import Row

@grutz grutz closed this as completed in 10745cd Feb 26, 2015
@grutz
Copy link
Contributor Author

grutz commented Feb 26, 2015

Thanks, forgot I hadn't merged this yet!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants