Changeset 3415

Show
Ignore:
Timestamp:
03/24/08 11:26:51 (9 months ago)
Author:
bobbysmith007
Message:

closes #2784

Thanks, this was causing other people problems as well.

Files:

Legend:

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

    r3360 r3415  
    4646        if ver < 1: 
    4747            self.log.debug('Creating Estimate and Estimate_Line_Item tables (Version 1)') 
    48             success &= dbhelper.execute_in_trans(self.env,  
     48            success = success and dbhelper.execute_in_trans(self.env,  
    4949                ("""CREATE TABLE estimate( 
    5050                     id integer PRIMARY KEY, 
  • estimatorplugin/0.10/setup.py

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

    r3361 r3415  
    4646        if ver < 1: 
    4747            self.log.debug('Creating Estimate and Estimate_Line_Item tables (Version 1)') 
    48             success &= dbhelper.execute_in_trans(self.env,  
     48            success = success and dbhelper.execute_in_trans(self.env,  
    4949                ("""CREATE TABLE estimate( 
    5050                     id integer PRIMARY KEY, 
  • estimatorplugin/0.11/setup.py

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