Changeset 1607

Show
Ignore:
Timestamp:
11/28/06 09:58:34 (2 years ago)
Author:
sambloomquist
Message:

ScrumBurndownPlugin:

switched execute method in needsUpgrade() to not parse in the table name. fixes #904

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • scrumburndownplugin/burndown/burndown.py

    r1495 r1607  
    4141        cursor = db.cursor() 
    4242        try: 
    43             cursor.execute('SELECT * FROM %s LIMIT 1', 'burndown') 
     43            cursor.execute('SELECT * FROM burndown LIMIT 1') 
    4444        except: 
    4545            needsUpgrade = True 
  • scrumburndownplugin/deploy.bat

    r1495 r1607  
    1 copy c:\burndown-plugin\dist\TracBurndown-01.03.10-py2.3.egg C:\Python23\Lib\site-packages 
     1copy c:\burndown-plugin\dist\TracBurndown-01.04.10-py2.3.egg C:\Python23\Lib\site-packages 
  • scrumburndownplugin/setup.py

    r1495 r1607  
    22 
    33PACKAGE = 'TracBurndown' 
    4 VERSION = '01.03.10' # the last two decimals are meant to signify the Trac version 
     4VERSION = '01.04.10' # the last two decimals are meant to signify the Trac version 
    55 
    66setup(name=PACKAGE,