Changeset 3399

Show
Ignore:
Timestamp:
03/19/08 10:21:38 (9 months ago)
Author:
bobbysmith007
Message:

closes #2755

Fixed a missed function in dbhelper when I added env back into all the function calls

PLEASE UPGRADE TO THE LATEST VERSION

You seem to be using an older version than the current one

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • estimatorplugin/0.10/estimatorplugin/dbhelper.py

    r3360 r3399  
    119119 
    120120 
    121 def get_result_set(sql, *params): 
     121def get_result_set(env, sql, *params): 
    122122    """Executes the query and returns a Result Set""" 
    123     tpl = get_all(sql, *params); 
     123    tpl = get_all(env, sql, *params); 
    124124    if tpl and tpl[0] and tpl[1]: 
    125125        return ResultSet(tpl) 
  • estimatorplugin/0.10/setup.py

    r3360 r3399  
    44 
    55setup(name=PACKAGE, 
    6       version='0.0.3', 
     6      version='0.0.4', 
    77      packages=[PACKAGE], 
    88      url='http://www.trac-hacks.org/wiki/EstimatorPlugin', 
  • estimatorplugin/0.11/estimatorplugin/dbhelper.py

    r3361 r3399  
    119119 
    120120 
    121 def get_result_set(sql, *params): 
     121def get_result_set(env, sql, *params): 
    122122    """Executes the query and returns a Result Set""" 
    123     tpl = get_all(sql, *params); 
     123    tpl = get_all(env, sql, *params); 
    124124    if tpl and tpl[0] and tpl[1]: 
    125125        return ResultSet(tpl) 
  • estimatorplugin/0.11/setup.py

    r3361 r3399  
    44 
    55setup(name=PACKAGE, 
    6       version='0.0.3', 
     6      version='0.0.4', 
    77      packages=[PACKAGE], 
    88      url='http://www.trac-hacks.org/wiki/EstimatorPlugin',