Changeset 3404

Show
Ignore:
Timestamp:
03/20/08 09:54:55 (6 months ago)
Author:
bobbysmith007
Message:

closes #2761

Sorry for the continuing errors. Please upgrade again (from svn up is fine, if you still have the source control copy available).

There was recently a large refactoring on this very young plugin, and while I thought it was pretty fully working, apparently I missed a few code paths related to the upgrade process.

Hopefully this will be the last of your troubles

Files:

Legend:

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

    r3399 r3404  
    112112 
    113113def set_system_value(env, key, value): 
    114     if get_system_value(key): 
     114    if get_system_value(env, key): 
    115115        execute_non_query(env, "UPDATE system SET value=%s WHERE name=%s", value, key)         
    116116    else: 
  • estimatorplugin/0.10/setup.py

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

    r3399 r3404  
    112112 
    113113def set_system_value(env, key, value): 
    114     if get_system_value(key): 
     114    if get_system_value(env, key): 
    115115        execute_non_query(env, "UPDATE system SET value=%s WHERE name=%s", value, key)         
    116116    else: 
  • estimatorplugin/0.11/setup.py

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