KvasirSecurity / Kvasir

Kvasir: Penetration Test Data Management
Other
424 stars 86 forks source link

pyDal changes Row() #173

Closed grutz closed 9 years ago

grutz commented 9 years ago

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
RCStep commented 9 years ago

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

from gluon.dal.objects import Row
grutz commented 9 years ago

Thanks, forgot I hadn't merged this yet!