Changeset 2258

Show
Ignore:
Timestamp:
05/18/05 16:42:05 (19 years ago)
Author:
jerome
Message:

A fix for the fix ! (Hoping all will be fixed someday)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/edpykota

    r2257 r2258  
    346346                limitby = protoentry.LimitBy 
    347347                balancevalue = protoentry.AccountBalance 
    348                 balance = str(abs(balancevalue)) 
     348                if balancevalue is not None : 
     349                    balance = str(abs(balancevalue)) 
     350                else :     
     351                    balance = None 
    349352                overcharge = getattr(protoentry, "OverCharge", None) 
    350353